Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Show a grabber in a WPF StatusBar?

In WPF, how do I display a grabber (the mall dotted triangle in the lower right corner) in a StatusBar control? Thanks.

like image 927
David Veeneman Avatar asked Aug 04 '10 20:08

David Veeneman


1 Answers

The grabber is on the top level window, not a property on the statusbar.

<Window x:Class="msbuildrefactor.MainWindow"
    ...
    ResizeMode="CanResizeWithGrip">
like image 112
C Johnson Avatar answered Sep 30 '22 01:09

C Johnson