Let's say we show some WPF Window and comes moment when we have to show some extra panel at the bottom.
What I want to do is to increase WPF Window size and center it again.
Any clue or samples?
|
|
You can programmatically change the size and location of the window, just set the appropriate Width and Height values for size and Top and Left for location. But it's even easier. Following this page you get
to automatically adapt the window size to the content, and with the help of this link you can center the window again after the size was changed. |
||||
|