我在windows窗体中的flowlayoutpanel中有20个用户控件。
每个用户控件都有一个按钮。
我想找到flowlayoutpanel上每个按钮的位置。如何找到按钮的X和Y坐标?
我可以像这样访问按钮:
foreach (Control ctrl in this.pnlContainer.Controls.Find("btnPrint",true))
{
Button c = ctrl as Button;
if (c != null)
{
logger.Info("x: "+c.Location.X + ",y: "+c.Location.Y,c);
}
}
但是,x和y坐标始终相同。
谢谢!
答案 0 :(得分:0)
如果按钮位于所有UC中的相同位置,那么对于UC中的所有按钮,x y将是相同的, 你得到的位置是相对于UC而不是表格。
我想你可以在这里找到它
C# Get a control's position on a form
试试这段代码
foreach (Control ctrl in this.flowLayoutPanel1.Controls)
{
foreach (Control item in ctrl.Controls.Find("button1", true))
{
Point pointOnForm = new Point(0, 0);
Control Btn = item;
for (; Btn.Parent != null && Btn.Parent.GetType() != typeof(Form); Btn = Btn.Parent)
{
pointOnForm.Offset(Btn.Location);
}
//label2.Text += pointOnForm + ",";
}
}