Tagged Questions

2
votes
1answer
3k views

How can I find an item in a WPF ListBox by typing?

Most list boxes allow you to find items within them by typing the first letters of the displayed text. If the typed letters match multiple items, then you can keep adding letters to narrow the ...
0
votes
0answers
234 views

WPF - control keyboard navigation in TreeView

I have a problem with the keyboard navigation in my treeview. I'm implementing a 3 column table. Each element in the first column consists of 3 columns: An Icon, a textBlock and an expander. If the ...
0
votes
1answer
73 views

Keyboard.FocusedElement is null, what are the possible causes?

While keyboard navigating a WPF app, in one step, between one control and another, the Keyboard.FocusedElement is null. If there is no reference to this property in the code, which methods can cause ...
0
votes
2answers
134 views

How to find out which element has focus when debugging WPF?

I'm navigating with the keyboard, and I can't find visually which element has the focus. While debugging I managed to break the execution in a method inside the Window but I don't know which property ...