How do I prevent a user from resizing a window in my C# application?

Viewed 33346

How do I prevent resizing my application window?

How can I do that?

6 Answers

You can change the ResizeMode property of the Window object to CanMinimize or NoResize in the xaml or via the designer.

Related