Tagged Questions

7
votes
1answer
665 views

TabIndex vs. KeyboardNavigation.TabIndex in WPF

What is the difference between TabIndex and KeyboardNavigation.TabIndex in WPF? When to use each?
4
votes
2answers
4k views

How can I set the TabIndex on a WPF Expander control?

In this example window, tabbing through goes from the first textbox, to the last textbox and then to the expander header. <Window x:Class="ExpanderTab.Window1" ...
2
votes
2answers
322 views

Can I navigate into and out of a wpf combo box using arrow keys instead of tab?

I have wpf UserControl containing a combobox and a textbox in a row. Currently the only way to move between the components is to tab between them, but I would like to also be able to switch from the ...
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 ...
1
vote
2answers
105 views

LIstView keyborad navigation like Windows Explorer in WPF

I wish to have keyboard navigation that is in IconView of Windows Explorer i.e if we move to the End of the width of the Screen selection should move to the next row.... <ListView Name="lv" ...
1
vote
3answers
96 views

How can I prevent tabbing to a UserControl?

I have a custom Popup that overlays part of my screen. When it is open, I want to disable tabbing into the UserControl behind it. I do not want to use the IsEnabled property because I do not want to ...
1
vote
1answer
176 views

DataGrid tab navigation skip column

I have a datagrid with template columns in WPF. Couple of columns in the grid are readonly, others on focus become editable (instead of labels, textboxes, checkboxes and such appear). What I would ...
1
vote
2answers
758 views

Strange focus behavior for simple WPF ItemsControl

I'm seeing strange behavior when it comes to focus and keyboard navigation. In the example below I have a simple ItemsControl that has been templated so that it presents a list of CheckBoxes bound to ...
1
vote
2answers
353 views

TabNavigation on window elements in WPF

in my WPF 4.0 desktop-based application I want to add ability to traverse through window's elements by pressing Tab-button. Here is fragment of my XAML: <!--main body layout--> ...
0
votes
0answers
121 views

MVVM based Cyclic Keyboard navigation in ListView with Custom View WPF

I have a ListView in which i am using custom view I took help from Avalon Team CustomView Example An for warpping vertically Set the Orientation="Vertical" in the style the complete code for ...
0
votes
0answers
236 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
137 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 ...
0
votes
1answer
303 views

Difference between KeyboardNavigationMode Contained and Cycle?

Short question - what is the real difference put in easy and understandable words?.. Extracts from MSDN: Contained - Depending on the direction of the navigation, focus returns to the first or the ...
0
votes
1answer
332 views

Keyboard Navigation is not working

I have created a TreeViewComboBox control, in this I am having a ComboBox with items as TreeView, but Keyboard Navigation doesn't work on the TreeView. I am not able to navigate through the ...
0
votes
2answers
2k views

WPF: Focus in a Window and UserControl

I'm trying to get a UserControl to tab properly and am baffled. The logical tree looks like this. |-Window -Grid -TabControl -TabItem -StackPanel -MyUserControl ...