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

有些话、适合烂在心里 提交于 2019-12-06 18:12:33

问题


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:


Set the SizingGrip attribute to false:

StatusStrip.SizingGrip = false;


来源:https://stackoverflow.com/questions/2464590/how-do-i-remove-the-resize-gripper-image-from-a-statusstrip-control-in-c

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!