Tagged Questions
The keyboard-navigation tag has no wiki summary.
7
votes
1answer
661 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
220 views
jQuery SlidesJS keyboard navigation
My site uses SlidesJS for a photo slideshow.
My question is, how can I use keyboard navigation?
I've added this GitHub solution to my head tag (lines 94-116) but the keyboard's left & right ...
2
votes
2answers
321 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
2answers
391 views
Is there a workaround to Safari's/Opera's bug that you can't tab through hyperlinks?
In IE, Firefox, Chrome and most Windows-based interfaces that I've used, the Tab key can be used to navigate from one form field or hyperlink to the next (e.g. "actionable" items) (note: I have not ...
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
174 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
1answer
51 views
Eclipse JDT: Is there a keyboard shortcut for opening new editor panes?
I often use the multi-pane editor feature in Eclipse to view multiple files simultaneously, and find it very strange that there appears to be no way other than dragging the tab with the mouse. Does ...
1
vote
6answers
107 views
Is there a way to make all onclick elements navigateable by keyboard?
With links and form fields you can use tab to cycle trough and activate them.
In my code however I use lots of elements, that have an onclick attribute to perform different actions. For example a ...
1
vote
0answers
565 views
Tab key navigation inside Telerik RadGridView
In a Telerik RadGridView with a GroupDescriptor set, once the focus enters the grid, the focus won't leave by pressing tab. It simply loops back to the beginning of the grid.
That is, there are some ...
1
vote
2answers
756 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
352 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-->
...
1
vote
2answers
740 views
Showing the browser’s ‘select file’ dialog when focusing input[type=file] through keyboard navigation
As the title says, I want the ‘select file’ dialog to open when a certain input gets focus by tabbing through the form fields (using keyboard navigation). By default, the ‘select file’ window only ...
1
vote
2answers
4k views
KeyBoard Navigation for menu using jquery
I am trying to add keyboard navigation to Menu(ul li based
) , i have bound the keydown event to menu (or should i bind keydown to the document ?)
the handler function used is given below
...
0
votes
0answers
120 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
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
201 views
Conflicts between JAWS table navigation short keys and custom implemented navigation keys(i.e. arrow keys)
Conflicts between JAWS table navigation short keys and custom implemented navigation keys(i.e. arrow keys)
I am trying to make an HTML table accessible using keyboard as well as readable using JAWS ...
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 ...
0
votes
1answer
180 views
Jquery selectbox keyboard navigation
I am busy with a selectbox in a template but i can't get it solved.
If you go to this page click here and look for the selectbox (it's in the forms section) and use the keyboard navigation it's skips ...
0
votes
1answer
431 views
NSTextField captures return key event twice
I have a textfield and two buttons. The user should be able to press return when they’re done editing the textfield, and then return again to activate one or the other of the buttons, depending on ...
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
1answer
836 views
jQuery Cycle multi slideshows and independent keyboard navigation
I have a page with 2 (or more) jQuery tabs. Each tab contains a jQuery Cycle slideshow with prev/next paging appended in the code.
I've added keyboard navigation of the slideshows, based on a ...
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
...