views:

160

answers:

1

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?

+1  A: 

Set the SizingGrip attribute to false:

StatusStrip.SizingGrip = false;
Matthew Jones
I believe the property can be set at design time as well. Perhaps labeled asShow Sizing Grip in the VS IDE.
galford13x
!@#! I didn't see that the first 10 times I looked for it.
Brad Bruce