2012-06-05 58 views
2

我正在使用此應用程序中的window8 metro應用程序,我在模擬器中插入兩個圖像按鈕,我是鼠標模式指針,此時輸入焦點。在Windows 8 Metro應用程序中禁用鼠標過度聚焦

我實現這個代碼...

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

如何禁用重點放在鼠標指針進入?

回答

1

我不使用Windows 8地鐵,只是還沒有,但你可以嘗試添加此:

<Setter Property="FocusVisualStyle" Value="{x:Null}" /> 

應該停止任何可視化的鼠標懸停和諸如此類的東西,但多數民衆贊成在WPF的答案,它應該與地鐵工作,但沒有承諾!

+0

嗨Vijay非常感謝你分享信息。 – Narasimha

相關問題