1

这可能听起来令人困惑,但是那些使用 Windows Phone 的用户,请启动任何支持键盘的应用程序并将您的手指放在一个字母上,然后移动您的手指。那个事件。有什么方法可以开发吗?

4

1 回答 1

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. };

于 2013-04-29T03:21:55.660 回答