Reputation: 11093
I have a Form with a StatusStrip component docked at the bottom. The form has fixed width and is not resizable. However the StatusStrip has a little 'resize triangle' at the right (6 little dots).
This gives the impression that the window is resizable. How can I remove it?
Upvotes: 2
Views: 3080
Reputation: 8945
From Stefanos's comment, do this:
statusStripObject.SizingGrip = False
Upvotes: 1
Reputation: 2846
Set the SizeGripStyle to Hide in the designer or programatically with:
yourForm.SizeGripStyle = Windows.Forms.SizeGripStyle.Hide
Edit: Maybe it's the same as mentioned here
Upvotes: 5