vote up 1 vote down star

What is the best way to stop a user from resizing the top-level window of an application written in WPF?

flag

74% accept rate

2 Answers

vote up 9 vote down check

You will want to use the ResizeMode.NoResize on the window.

<Window x:Class="WpfApplication5.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    ResizeMode="NoResize">
</Window>
link|flag
vote up 0 vote down

A WPF quirk to note is that if ResizeMode="NoResize" and WindowStyle="None" you will lose the chrome around the entirely in Vista Aero.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.