本文介绍了WinMobile Button的事件(Click,KeyDown,KeyUp)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我对按钮的事件有疑问.
在我的PJ中,我希望激活单击并按住一个按钮时的结果:

1)> 2秒->显示您确定..."
2)< = 2秒->显示确定"

我的想法:
1)keyDown/Click->将当前的DateTime记录为dtKeyDow
2)KeyUp-> DateTime.Now-dtKeyDow
不幸的是,当我单击此按钮时,它将永远不会执行KeyUp事件.

所以,我需要你的帮助,请! TKS ...

:sigh:

I have a question about button''s event.
In my PJ, I want active the results that when I click and hold a button:

1) > 2 second''s -> show ''Are you sure ...''
2) <= 2 second''s -> show ''OK''

My thinks:
1) keyDown/Click -> Record current DateTime as dtKeyDow
2) KeyUp -> DateTime.Now - dtKeyDow
Unfortunately, when I click this Button, that never execute the KeyUp event.

So, I need you help, Please! TKS...

:sigh:

推荐答案



这篇关于WinMobile Button的事件(Click,KeyDown,KeyUp)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-11 08:44