I want to show a chromeless modal window with a close button in the upper right corner. Is this possible?
|
|
|
|
|
|
|
You'll pretty much have to roll your own Close button, but you can hide the window chrome completely using the WindowStyle attribute, like this:
That will still have a resize border. If you want to make the window non-resizable then add ResizeMode="NoResize" to the declaration. |
||
|
|
|
|
The WPF SDK Team posted a EXCELLENT article about chromeless windows available here: http://blogs.msdn.com/wpfsdk/archive/2008/09/08/custom-window-chrome-in-wpf.aspx This is a MUST read!!! |
||
|
|
|
|
||
|
|

