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 に答える