I need to know the position of a window that is maximized.
WPF Window has Top and Left properties that specifies the window\'s location. However, if you maximize the
I realize that you are working in WPF, and this answer makes use of Forms technology, but it should work without much difficulty.
You can get a collection of the screens through My.Settings.Screens.AllScreens. From there you can access the resolution that the screen is currently working on.
Since WPF windows retain the Top/Left values that they had when they were maximized, then you can determine which screen they are on by figuring out which screen that Top/Left coordinates refer to, and then get the top/left coordinate for that screen.
Unfortunately, I am on the road, and can't test this at the moment. If you do implement, I would love to see what you come up with.