鼠标事件未启动
本文关键字:启动 事件 鼠标 | 更新日期: 2023-09-27 18:24:11
我正在制作一个C#WinForms应用程序。该表单的鼠标移动和鼠标点击事件不会因为某种原因而被解雇。(当我发现原因时,我可能会觉得自己像个白痴。)它是一个透明的窗体(TransparencyKey设置为背景色),在图片框中有一个半透明的动画gif。我正在做一个屏幕保护程序。有什么建议吗?
编辑:主屏幕保护程序.cs
Random randGen = new Random();
public MainScreensaver(Rectangle bounds)
{
InitializeComponent();
this.Bounds = Bounds;
}
private void timer1_Tick(object sender, EventArgs e)
{
Rectangle screen = Screen.PrimaryScreen.Bounds;
Point position = new Point(randGen.Next(0,screen.Width-this.Width)+screen.Left,randGen.Next(0,screen.Height-this.Height)+screen.Top);
this.Location = position;
}
private void MainScreensaver_Load(object sender, EventArgs e)
{
Cursor.Hide();
TopMost = true;
}
private Point mouseLocation;
private void MainScreensaver_MouseMove(object sender, MouseEventArgs e)
{
if (!mouseLocation.IsEmpty)
{
// Terminate if mouse is moved a significant distance
if (Math.Abs(mouseLocation.X - e.X) > 5 ||
Math.Abs(mouseLocation.Y - e.Y) > 5)
Application.Exit();
}
// Update current mouse location
mouseLocation = e.Location;
}
private void MainScreensaver_KeyPress(object sender, KeyPressEventArgs e)
{
Application.Exit();
}
private void MainScreensaver_Deactive(object sender, EventArgs e)
{
Application.Exit();
}
private void MainScreensaver_MouseClick(object sender, MouseEventArgs e)
{
Application.Exit();
}
摘自MainScreensaver.Designer.cs InitializeComponent()
this.MouseClick += new System.Windows.Forms.MouseEventHandler(this.MainScreensaver_MouseClick);
this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MainScreensaver_MouseMove);
这不是你的问题的答案,但我会留下这个答案,以防其他人在尝试调试同一问题时偶然发现这个问题(这就是我来到这里的原因)
在我的例子中,我有一个派生自Form
的类。
我也在使用TransparencyKey
。
我注意到的一些事情
- 事件不会在窗体的透明部分上启动
- 如果鼠标光标位于窗体上的另一个控件上,则不会触发事件
- 如果覆盖
WndProc
并设置WM_NCHITTEST
消息的结果,则不会触发事件。Windows甚至不会发出会导致.NET事件的相应鼠标消息
我的解决方案
在我的构造函数中,我忘记调用InitializeComponent()
。
这就是事件处理程序绑定到我的控件的地方。
事件未激发,因为未绑定处理程序。
你确定你的表单有焦点吗?如果表单没有焦点,则不会触发鼠标事件。