情報を含む追加のパネルのような新しいフォームを開くことを可能にするコードを作成してみてください。新しいフォームをプライマリ フォームの真下で開く必要があるため、フォームの座標を見つける必要がありますが、取得できるのは 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());
}
どこが間違っていますか?