How do I remove the resize gripper image from a StatusStrip control in C#?
Asked Answered
D

1

17

I need to show a StatusStrip control docked top instead of bottom.

User requirement. Long story.

How do I get the StatusStrip to display without the dots in the right corner?

Dagall answered 17/3, 2010 at 17:53 Comment(0)
A
37

Set the SizingGrip attribute to false:

StatusStrip.SizingGrip = false;
Aleuromancy answered 17/3, 2010 at 17:55 Comment(3)
I believe the property can be set at design time as well. Perhaps labeled as Show Sizing Grip in the VS IDE.Selfexcited
!@#! I didn't see that the first 10 times I looked for it.Dagall
Oh, so StatusStrip.GripStyle = ToolStripGripStyle.Hidden is only there to confuse us all...Geology

© 2022 - 2024 — McMap. All rights reserved.