缺少ToolStripButton.Left属性

时间:2012-06-18 08:06:04

标签: c# winforms toolstripbutton

我需要将panel.Left属性设置为等于ToolStripButton.Left值:

pan1.Left = btn1.Left;  

但是ToolStripButton没有这样的属性。 请问有解决方案。

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

2 个答案:

答案 0 :(得分:1)

你不需要任何control来推断中心,而是形成自己:

panel1.Left = this.ClientSize.Width / 2 - panel1.Width / 2;

答案 1 :(得分:1)

这有效:

pan1.Location = new Point(btn1.Bounds.X,pan1.Location.Y);