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);
}
如何禁用重點放在鼠標指針進入?
嗨Vijay非常感謝你分享信息。 – Narasimha