1
如何在不禁用使用鼠標選擇的情況下禁用WPF列表框中的鍵盤導航?禁用WPF列表框中的鍵盤導航
如何在不禁用使用鼠標選擇的情況下禁用WPF列表框中的鍵盤導航?禁用WPF列表框中的鍵盤導航
處理的PreviewKeyDown
事件,並設置e.Handled
爲true(你可以檢查並禁用其設置有KeyEventArgs傳遞給處理程序只有某些鍵/改性劑):
XAML:
<ListBox PreviewKeyDown="listBox_PreviewKeyDown">
<ListBoxItem Content="asdfasdf" />
<ListBoxItem Content="asdfasdf" />
<ListBoxItem Content="asdfasdf" />
</ListBox>
後面的代碼:
private void listBox_PreviewKeyDown(object sender, KeyEventArgs e)
{
e.Handled = true;
}
你能提供C#代碼?我沒有學會視覺基礎。 – 2011-01-09 14:04:34