有没有一种通过保持检测按钮选择开关的方法?

时间:2013-04-26 04:24:03

标签: c# windows-phone-8

这可能听起来令人困惑,但是那些使用Windows Phone的人,请启动任何支持键盘的应用程序并将手指放在一个字母上,然后转动手指。那件事。有没有办法发展呢?

1 个答案:

答案 0 :(得分:0)

  1. 将按钮设置为悬停模式。

    Button btn = new Button { ClickMode = ClickMode.Hover };

  2. 设置活动。

    btn.MouseEnter += (sender, e) => { //What happens when your finger reaches within the area of the button. };

    btn.MouseLeave += (sender, e) => { //What happens when your finger leaves the area of the button. };