尝试创建代码,允许打开或新表单,例如一些带有信息的附加面板。我要求新表单正好在主表单下方打开,因此需要找到表单的一些坐标,但只能得到 0 和 0:
代码:
public int getCoordinateX()
{
return this.Location.X;
}
public int getCoordinateY()
{
return this.Location.Y;
}
和 on_load 下一个表单使用
private void PlayListForm_Load(object sender, EventArgs e)
{
mainForm formObject = new mainForm();
this.Location = new Point(formObject.getCoordinateX(), formObject.getCoordinateY());
}
我哪里错了?