C# Winfrom 如何判断鼠标在窗体上是否移动过?
如题,是这样的。
我在做触摸屏。为了防止客户点了触摸屏没按返回就离开。我想让它在某一页面上只停留一分钟。一分钟过户就回到主页面。
我是这样做的,拖一个timer控件,然后声明一个全局的int变量。
interval属性设置成1000。
代码
private void timer2_Tick(object sender, EventArgs e)
{
begin++;
if (begin == 60)
{
//Application.Exit();
this.Close();
//MainForm main = new MainForm();
//main.Show();
Form3 f = new Form3();
f.Show();
}
}
把前一个页面关闭了,但第二个页面没show出来怎么回事?
说白了我就是等时间到了60秒它就自动它关了。
然后再show一下主窗体。
能实现这个功能就不用看下面了。
群力的朋友说,把当前页面的属性设为false也就是this.Visible = false;
这样一来两个页面时还好使等页面多了就不行了。
后来又想,先判断鼠标是不是在窗体上?如果不在,时间就停止并且不去执行timer的事件。
如果鼠标在窗体上看它是移动还是静止如果是移动就不去管它。
如果鼠标是静止就让它执行timer事件。
或许是我思路有问题,有好主意也可以提一下。
高手赐教
------解决方案--------------------先Show后Close,试试!
处理MouseEnter,MouseLeave
------解决方案-------------------- Form2 frm = new Form2();
frm.Show();
//this.Close();
this.Hide();
------解决方案--------------------
begin 定义为Public
触发MouseMove事件时
begin =0;
不触发就begin++
public static int begin;
private void FormMain_MouseMove(object sender, MouseEventArgs e)
{
begin= 0;
}
private void timer2_Tick(object sender, EventArgs e)
{
begin++;
if (begin==60)
{
begin= 0;
//Application.Exit();
this.Close();
//MainForm main = new MainForm();
//main.Show();
Form3 f = new Form3();
f.Show();
}
}