Tagged Questions

4
votes
6answers
276 views

Panel.TabStop = true has no effect

I Trying to switch Panel.TabStop property totrue but it does not affect anything. How to enable TabStop in a Panel?
1
vote
1answer
230 views

Design Principle: Is there ever a reason to turn TabStop off?

In Visual Studio .NET the TabStop property is by default set to True for all command and input fields. Most other designers have some concept of tab control for "power users" who don't like to switch ...
0
votes
1answer
75 views

How to control tabbing order without disabling all focus for controls in this scenario

I got a control that looks like this , it has several text boxes [1 ][2 ][3 ][4 ] Now in my app those controls are forming a somekind of a matrix like [1 ][2 ][3 ][4 ] [1 ][2 ][3 ][4 ] [1 ][2 ][3 ...
0
votes
1answer
370 views

Using StringFormat.SetTabStops(), is it possible to align tabs?

I'd like to be able to align the tabstops I use in a StringFormat (set with the SetTabStops() method) Is this possible?
0
votes
1answer
430 views

TabStop/TabIndex behaves erratically within TableLayoutPanel

I've got a rather complex TableLayoutPanel with close to 40 controls on it. Some are read-only, and some don't need user attention unless in very special cases (which can then be accessed with mouse). ...