Tagged Questions

2
votes
3answers
98 views

Python tabstop-aware len() and padding functions

Python's len() and padding functions like string.ljust() are not tabstop-aware, i.e. they treat '\t' like any other single-width character, and don't round len up to the nearest multiple of tabstop. …
2
votes
1answer
474 views

AdornerDecorator and tab stop issues

Hi, I am using IDataErrorInfo to validate and indicate errors in my text boxes. I am finding I have to tab once for the text box and once for the adornerdecorator. I have an error template: …
1
vote
1answer
64 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 …
1
vote
0answers
211 views

Locating the first WPF tab stop

Thanks to an answer on a previous question (Previous Question), I now have a body of code that navigates WPF tab stops (shown below). It works fine except for the first tab stop. Calling …
1
vote
2answers
722 views

How to programmatically navigate WPF UI element tab stops?

Can anyone tell me how to programmatically navigate through all UI element tab stops in a WPF application? I want to start with the first tab stop sniff the corresponding element, visit the next tab …
0
votes
0answers
66 views

Silverlight Programmatic Next TabStop

When a TabItem gains focus, I want to intelligently assign Focus to controls inside of it. Basically I just need to hit the Tab key upon the TabItem's GotFocus event. But I can't find any way to do …
0
votes
2answers
85 views

Prevent tabstop on A element (anchor link) in HTML

Is it possible to cancel an <a src="..."> from being tabstopped in any browser? I would like to do this without Javascript.
0
votes
2answers
157 views

Word VBA Tabstop Problem

Hello, I have the following VBA code Private Sub CreateQuery_Click() Dim doc As Document Dim i As Integer Set doc = ActiveDocument i = doc.Paragraphs.Count …
0
votes
0answers
145 views

WPF: Jump/navigate to next data error using programmatic keyboard focus navigation

I've built a WPF application. All of the UI elements except the Window are created in response to data binding. Thus, I set the DataContext of the Window, and voila -- a very large hierarchy of UI …