大约 5 年前,我创建了一个应用程序,允许我在 Panel 控件中拖动控件。
我知道如何移动东西。
问题是我丢失了备份代码,并且无法记住/弄清楚我之前是如何做到的。
当我单击一个按钮(例如,添加按钮)时,控件是动态创建的。
所以:
bool mouseDown;
Point lastMouseLocation = new Point();
Control SelectedControl = null;
void AddButton_Click(object sender, EventArgs e)
{
// Create the control.
Button button = new Button();
button.Location = new Point(0,0);
button.Text = "hi lol";
// the magic...
button.MouseDown += button_MouseDown;
button.MouseMove += button_MouseMove;
button.MouseUp += button_MouseUp;
button.Click += button_Click;
}
void button_Click(object sender, EventArgs e)
{
SelectedControl = sender as Control; // This "selects" the control.
}
void button_MouseDown(object sender, EventArgs e)
{
mouseDown = true;
}
void button_MouseMove(object sender, EventArgs e)
{
if(mouseDown)
{
SelectedControl.Location = new Point(
(SelectedControl.Location.X + e.X) - lastMouseLocation.X,
(SelectedControl.Location.Y + e.Y) - lastMouseLocation.Y
);
}
}
void button_MouseUp(object sender, EventArgs e)
{
mouseDown = false;
}
所以基本上我想做的是当用户点击表单上的任何控件时,它然后“选择它”,然后他们可以移动它。
但问题是,我不记得如何正确地做到这一点,因此我只能拥有一组用于 MouseDown、Up、Move 等和 SelectedControl 的处理程序,它们可以代表添加到面板的所有控件。
我怎样才能做到这一点?