toolStrip和statusStrip位置

时间:2013-07-11 16:41:46

标签: winforms visual-studio-2010 toolstrip statusstrip

我如何才能实现这样的目标?

enter image description here

我尝试将工具栏停靠在左侧

enter image description here

toolstrip dock to none

enter image description here

statusstrip dock to none

enter image description here

2 个答案:

答案 0 :(得分:1)

您有Z订单问题。右键单击控件并尝试“Bring to Front”或“Send to Back”。您可能还必须单击其他停靠的控件并更改其z顺序。

答案 1 :(得分:0)

转到您的Form1.Designer.cs(From1是您的表单的名称)设计器生成的文件。转到将条带添加到窗体的Controls集合的部分,然后切换顺序,如下所示:

this.Controls.Add(this.toolStrip1);
this.Controls.Add(this.statusStrip1);

这样,状态行程将按照正确的Z顺序(就布局而言)。