私はカーソルの位置を取得する方法を知っています:
int X = Cursor.Position.X;
int Y = Cursor.Position.Y;
しかし、これは画面に関連しています。フォームに関連する座標を取得するにはどうすればよいですか?
使用 - Control.PointToClient
メソッド 。 this
が問題のフォームを指していると仮定すると:
var relativePoint = this.PointToClient(new Point(X, Y));
または単に:
var relativePoint = this.PointToClient(Cursor.Position);
次のようにPointToClient
を使用します。
Point p = yourForm.PointToClient(Cursor.Position);
//if calling it in yourForm class, just replace yourForm with this or simply remove it.
Control.PointToClientを使用してこのように試してみてください:-
public Form()
{
InitializeComponent();
panel = new System.Windows.Forms.Panel();
panel.Location = new System.Drawing.Point(90, 150);
panel.Size = new System.Drawing.Size(200, 100);
panel.Click += new System.EventHandler(this.panel_Click);
this.Controls.Add(this.panel);
}
private void panel_Click(object sender, EventArgs e)
{
Point point = panel.PointToClient(Cursor.Position);
MessageBox.Show(point.ToString());
}