本文介绍了改变StatusStrip中的高度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个简单的窗口,在VS2010一个StatusStrip中形成,而不管是什么我试过了,StatusStrip中的高度不改变,是什么改变了高度??
I have a simple windows form with a statusStrip in VS2010, and no matter what I tried, the height of statusStrip does not change, what is proper way of changing the height??
感谢
推荐答案
我只是改变了StatusStrip中大小没有问题...
I just changed the StatusStrip size without problems...
- 创建一个新的窗体。
- 创建一个StatusStrip中。
- 设置其属性码头为无。
- 设置其属性自动调整到假。
- 设置其属性大小与高度='的高度你需要'(我已经把它到100)。
- 如果你想,现在你可以停靠到底了。
- 添加一个进度条:这将是100的身高
- Create a new Form.
- Create a StatusStrip.
- Set its property "Dock" to "None".
- Set its property "Autosize" to "False".
- Set its property "Size" with Height = 'the height you need' (I have put it to 100).
- If you want, now you can Dock to "Bottom" again.
- Add a ProgressBar: it will be 100 Height.
让我知道这对你的作品
这篇关于改变StatusStrip中的高度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!