Brad Bruce
Brad Bruce

Reputation: 7827

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

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?

Upvotes: 17

Views: 7886

Answers (1)

Matthew Jones
Matthew Jones

Reputation: 26190

Set the SizingGrip attribute to false:

StatusStrip.SizingGrip = false;

Upvotes: 38

Related Questions