本文介绍了如何从C#中的StatusStrip控件中删除调整大小的抓取器图像?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要显示一个StatusStrip控件停靠的顶部,而不是底部.

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

用户要求.话长了.

如何使StatusStrip显示在右角没有点的位置?

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

推荐答案

将SizingGrip属性设置为false:

Set the SizingGrip attribute to false:

StatusStrip.SizingGrip = false;

这篇关于如何从C#中的StatusStrip控件中删除调整大小的抓取器图像?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 02:34