フォームの左上隅に座標系の開始点を設定する方法はありますか?それはモニターの左上隅に開始点を設定しているので形成するが、私は、フォームの左上隅にポイントを開始する必要はありません。..フォームの左上隅に座標系の開始点を設定する方法は?
ここで私がやろうよどのようなコードです:
int x, y;
string _x, _y;
private void GetCursor()
{
_x = MousePosition.X.ToString();
x = int.Parse(_x);
label2.Text = _x;
_y = MousePosition.Y.ToString();
y = int.Parse(_y);
label4.Text = _y;
}
private void MoveButton()
{
button1.Location = new Point(x,y);
}
private void timer1_Tick(object sender, EventArgs e)
{
GetCursor();
MoveButton();
}
感謝。
コードを投稿してください。 – vanloc
ボタンを動かすときに、メソッドが "MoveMouse"と呼ばれるのはなぜですか? – Amy