我想要启用这个System.Windows.Forms.Panel,这样如果用户点击并拖动鼠标就会拖动窗口。
我可以这样做吗?我必须实施多个活动吗?
答案 0 :(得分:29)
最适合我的解决方案是使用非托管代码,与HatSoft发布的答案不同,它可以为您提供平滑的窗口移动。
在面板移动中拖动窗口的3个小步骤
using System.Runtime.InteropServices;
在你的课程中添加这六行
public const int WM_NCLBUTTONDOWN = 0xA1;
public const int HT_CAPTION = 0x2;
[DllImportAttribute("user32.dll")]
public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
[DllImportAttribute("user32.dll")]
public static extern bool ReleaseCapture();
并且Panel上的MouseMove事件应该如下所示
private void panel1_MouseMove(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
ReleaseCapture();
SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
}
}
发布时间有点晚了:),谁知道我们将来可能会再次需要它。
答案 1 :(得分:4)
您可以使用面板的MouseMove事件
来实现它示例应该是这样的(抱歉没有测试过)
private void panel1_MouseMove(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
this.Location = new Point(Cursor.Position.X + e.X , Cursor.Position.Y + e.Y);
}
}
答案 2 :(得分:0)
答案 3 :(得分:0)
当前设置为面板。 VS C# Just Messing About 似乎对我有用 按下左键时将应用程序的左上角设置为鼠标位置。
public form1()
{
InitializeComponent();
this.panel2.MouseMove += new MouseEventHandler(panel2_MouseMove);
}
public const int WM_NCLBUTTONDOWN = 0xA1;
public const int HT_CAPTION = 0x2;
[DllImportAttribute("user32.dll")]
public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
private void panel2_MouseMove(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
Point loc1 = MousePosition;
this.Location = loc1;
}
}
答案 4 :(得分:-1)
Bravo的代码工作得非常好,但是在我想要移动的面板的> properties->事件部分中明确制作MouseMove事件之前,我无法正常工作。