Tagged Questions

24
votes
5answers
20k views

Setting tab order in wpf

How do I set tab ordering in WPF? I have an ItemsControl with some items expanded and some collapsed and would like to skip the collapsed ones when I'm tabbing. Any ideas?
7
votes
2answers
673 views

WPF hosting a WinForm, Tab Navigation problems

I have run into issues when hosting a WinForms form within a WindowsFormsHost and the tab navigation. To solve I have made this simple example: Created WPF Window (starting point of app) Created ...
3
votes
2answers
347 views

In wpf, how can I get the next control in the tab order

All, I know how to set the focus to the next control in the tab order, but I don't actually want to change focus... I just want to get the next control in the tab order (perhaps get the previous, ...
3
votes
2answers
1k views

WPF tab order working wrong

I have a view in WPF that I have been fighting to get the tab order correct on. I have three text boxes (lets call them Text1, Text2, and Text3) and two custom controls, each of which has several ...
2
votes
3answers
106 views

Specified Tab Order is not being followed?

Why isn't my XAML following the TabOrder I specified? I currently have: <DockPanel> <Grid DockPanel.Dock="Top"> <UserControl TabIndex="0"> <StackPanel ...
1
vote
4answers
2k views

WPF tab order with custom controls?

I have a WPF page that contains several out of the box controls with the tab order set. I have a custom control (NumericSpinner) that contains: border/grid/text box/2 Repeatbuttons (up/down). Two ...
0
votes
1answer
110 views

Setting tab order in wpf when use from UserControls?

I have a User Control like this: <UserControl x:Class="MySample.customtextbox" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
0
votes
1answer
31 views

tab only through items inside grid

I have some controls inside a Grid, and that Grid is a child container of another container, which is also a child container of another container and so on. The tab order of controls inside the Grid ...
0
votes
2answers
84 views

Selected RadioButton receives tab out of order

I have a custom control: a Listbox defining a set of ListItemBox's, which each contain a RadioButton. I have not set the TabIndex for each of these individually, as the list is being read in ...
0
votes
1answer
51 views

Programatically focus a UI element that was re-enabled in the prior statement

I'm developing a form and one of the requirements for it is that the majority of the fields be disabled until the first two have been completed. For the sake of usability I want it set up so after ...
0
votes
0answers
24 views

Tabbing over different Views

I am trying to create a web page with some dynamic fields like shown here. First Name (textBox)................Last Name........(textBox) DOB...........(textBox)................Sex ...
0
votes
1answer
114 views

WPF custom textbox takes two tabs to get to text?

I have a custom textbox control that displays its name when there is no text inside of it, but for some curious reason I have to hit tab twice to get from the previous element to get into the ...
0
votes
1answer
90 views

How do I keep the tab order within the currently selected sub-form in Visual Studio 9?

I'm working on a hand me down application for work and the tabbing order is a mess. First I should note that there are many, many (even 4 layers nested...) sub-forms with multiple tabs. There are two ...
0
votes
1answer
591 views

WPF Popup tab key bug

I have a WPF Popup control with a ListBox and a Button in it. When I click the Button, it should become disabled. The problem is, that when I disable the Button, the Tab key goes out from the Popup. I ...