1

我需要设置一个 panel.Left 属性等于 ToolStripButton.Left 值:

pan1.Left = btn1.Left;  

但是 ToolStripButton 没有这样的属性。请问有解决办法吗。

如果没有 - 如何将面板放置在表单的中心。

4

2 回答 2

1

这有效:

pan1.Location = new Point(btn1.Bounds.X,pan1.Location.Y);  
于 2012-06-18T11:22:25.033 回答
1

您不需要任何类型的control来推断中心,而是形成自身:

panel1.Left = this.ClientSize.Width / 2 - panel1.Width / 2;
于 2012-06-18T08:33:25.347 回答