2

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?

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Stefanos Kargas
  • 10,547
  • 22
  • 76
  • 101

2 Answers2

5

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

Community
  • 1
  • 1
Philipp Grathwohl
  • 2,726
  • 3
  • 27
  • 38
1

From Stefanos's comment, do this:

statusStripObject.SizingGrip = False
Samuel
  • 8,063
  • 8
  • 45
  • 41