Tagged Questions

2
votes
2answers
409 views

WPF : How to move a maximized custom window?

I'm working on a custom window to add more styling to my application. I followed some tutorials to enable basic window behaviors : Closing Maximizing Minimizing Moving Resizing These are all ...
2
votes
2answers
1k views

Maximizing WPF Doesn't Update Width?

The width property of the screen doesn't seem to update to the fully maximized width when maximizing a window. If I resize it everything works fine, but not when maximizing. The code I have is as ...
1
vote
3answers
57 views

Get Size of Window when is Maximized in WPF

i search for a way to get the Width-Property of an Maximized WPF Window. Any Ideas how can i get the absolute value? Thanks a lot.
1
vote
1answer
860 views

How to? WPF Window - Maximized, No Resize/Move

I'm trying to make a WPF window that opens already maximized, with no resize/move (in systemmenu, nor in border). It should be maximized all the time, except when the user minimize it. I tried to put ...
0
votes
3answers
316 views

How to trigger the event associated with maximize in C#

Consider the following code: Window myWindow = new MyWindowSubclass(); myWindow.BringIntoView(); myWindow.Show(); // Code which is effective as pressing the maximize button Also, how to detect if ...