First, fair warning: I am a complete newbie with C# and WPF.
I have a combobox (editable, searchable) and I would like to be able to intercept the Delete key and remove the currently highlighted item from the list. The behavior I'm looking for is like that of MS Outlook when entering in email addresses. When you give a few characters, a dropdown list of potential matches is displayed. If you move to one of these (with the arrow keys) and hit Delete, that entry is permanently removed. I want to do that with an entry in the combobox.
Here is the XAML (simplified):
<ComboBox x:Name="Directory"
KeyUp="Directory_KeyUp"
IsTextSearchEnabled="True"
IsEditable="True"
Text="{Binding Path=CurrentDirectory, Mode=TwoWay}"
ItemsSource="{Binding Source={x:Static self:Properties.Settings.Default},
Path=DirectoryList, Mode=TwoWay}" />
The handler is:
private void Directory_KeyUp(object sender, KeyEventArgs e)
{
ComboBox box = sender as ComboBox;
if (box.IsDropDownOpen && (e.Key == Key.Delete))
{
TrimCombobox("DirectoryList", box.HighlightedItem); // won't compile!
}
}
When using the debugger, I can see box.HighlightedItem has the value I want but when I try and put in that code, it fails to compile with:
System.Windows.Controls.ComboBox' does not contain a definition for 'HighlightedItem'...
So: how do I access that value? Keep in mind that the item has not been selected. It is merely highlighted as the mouse hovers over it.
Thanks for your help.
Here is a screenshot showing the debugger's display. I hovered over "box" and when the one-line summary was displayed, I then hovered over the + char to expand to this image:


本文介绍如何通过反射访问ComboBox的HighlightedItem属性,该属性用于获取当前高亮显示但未选中的项。

852

被折叠的 条评论
为什么被折叠?



