私はこのアプリケーションで window8 メトロ アプリケーションに取り組んでいます。2 つの画像ボタンを挿入しています。シミュレーターでは、今回はマウス モード ポインターを入力してフォーカスを取得しています。
私はこのコードを実装しています...
private void button_PointerEntered(object sender, Windows.UI.Xaml.Input.PointerEventArgs e)
{
System.Diagnostics.Debug.WriteLine("Pointer Entered");
Button thisButton = (Button)sender;
thisButton.Focus(FocusState.Unfocused);
}
入力されたマウスポインターのフォーカスを無効にするにはどうすればよいですか?