我在 Panel 控件中动态创建了一个 Label 控件。我正在使用鼠标事件移动标签控件。那个时候标签控件移动到面板控件之外。我该如何限制它?
问问题
840 次
3 回答
3
您可以利用Cursor.Clip
您的要求(尽管我们可以在MouseMove
事件处理程序中手动处理):
Point downPoint;
//MouseDown event handler for your label1
private void label1_MouseDown(object sender, MouseEventArgs e){
downPoint = e.Location;
//this is the most important code to make it works
Cursor.Clip = yourPanel.RectangleToScreen(new Rectangle(e.X, e.Y, yourPanel.ClientSize.Width - label1.Width, yourPanel.ClientSize.Height - label1.Height));
}
//MouseMove event handler for your label1
private void label1_MouseMove(object sender, MouseEventArgs e) {
if (e.Button == MouseButtons.Left) {
label1.Left += e.X - downPoint.X;
label1.Top += e.Y - downPoint.Y;
}
}
//MouseUp event handler for your label1
private void label1_MouseUp(object sender, MouseEventArgs e){
Cursor.Clip = Rectangle.Empty;
}
于 2013-08-26T06:22:31.430 回答
1
如果您将标签动态添加到面板,那么您必须执行以下操作:
this.panel1.Controls.Add(this.button1);
如果你不这样做,那就是错误。最重要的是,当您移动标签时,请确保新值在面板范围内,使用
panel1.Location.X
panel1.Location.Y
并在需要时分享您的代码以获得更多帮助
于 2013-08-26T04:43:52.453 回答
1
您可以通过定义光标必须驻留的矩形来限制移动。使用Cursor.Clip方法。
拖动时设置:
Cursor.Clip = panel1.ClientRectangle;
然后使用 mouseUp 事件:
Cursor.Clip = null;
于 2013-08-26T04:44:58.023 回答