Questions tagged [tabstop]

124 questions
23
votes
3 answers

Vim Ultisnips - How do I move to the next placeholder or tabstop?

I just installed a brand new copy of Macvim and UltiSnips, but I can't figure out how to move to the next completions using tabstops and placeholders. When I press tab, it simply adds a tab space. My guess is that the tab key was remapped in…
Bryan
  • 17,201
  • 24
  • 97
  • 123
18
votes
2 answers

How to disable tab stop on a stackpanel

I have a stackpanel that keeps getting focus when I tab around in the application. Using snoop I can see that the stackpanel has a ContentControl which has a ContentPresenter. It is the ContentControl that gets the focus. How can I disable this?…
Michael
  • 1,081
  • 1
  • 12
  • 27
15
votes
3 answers

Disable tabstop between columns in a WPF datagrid

I have a WPF Toolkit datagrid with mulitple columns. I am trying to get a behaviour where you can tab into the grid using tab, then tab out again using a single tab. E.g. I do not want to tab through all the columns or cells of the grid, just once…
Thies
  • 4,101
  • 2
  • 31
  • 37
12
votes
14 answers

How to replace custom tabs with spaces in a string, depend on the size of the tab?

I'm trying to write a python function not using any modules that will take a string that has tabs and replace the tabs with spaces appropriate for an inputted tabstop size. It can't just replace all size-n tabs by n spaces though, since a tab could…
Austin
  • 6,921
  • 12
  • 73
  • 138
11
votes
2 answers

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 stop, sniff the corresponding element, and so on…
Michael Hewitt
  • 275
  • 1
  • 2
  • 8
10
votes
2 answers

WPF: How to disable tab navigation without also disabling arrow key navigation?

I have set IsTabStop to false on all controls in my window, so that when I press the Tab key, the focus doesn't move (I need the Tab key for something else). But doing this breaks arrow key navigation - I click on an item in a ListView and then…
Meh
  • 7,016
  • 10
  • 53
  • 76
9
votes
7 answers

How do you do tab stops in HTML/CSS

There is some text whose formatting I would like to render in HTML. Here is an image: Note the gray lines with the bullet points and the paragraph numbers. The bullets should be centered on the page and the numbers should be justified right. I've…
Frank Krueger
  • 69,552
  • 46
  • 163
  • 208
9
votes
2 answers

IsTabStop="False" has no effect on my WPF app

I'm having a really hard time with something that should be trivial. I just want to remove a few buttons from the tab order on a UserControl. I've tried adding IsTabStop="False" and KeyboardNavigation.IsTabStop="False" attributes to their xaml…
John
  • 151
  • 1
  • 1
  • 7
8
votes
2 answers

Disable TabStop on Expander

I set IsTabStop to False, but Tab still navigates to the expander. Any ideas what am I doing wrong?
Meh
  • 7,016
  • 10
  • 53
  • 76
6
votes
2 answers

IsTabStop = False on a SL4 Text box

I set IsTabStop to false on a text box and I know that this makes the control unable to receive focus, but according to the Silverlight Forums, it should still be able to receive mouse events. I have the MouseLeftButtonUp event wired and a…
5
votes
4 answers

How to stop debugging in Android application in Eclipse

I'm writing a simple Android application. I changed the "Java EE" perspective to "debug" and after tracing variables, I return to original perspective ( "Java EE" ) and stopped debugging. But when I try to run my application on my phone, it changes…
Farid Ala
  • 668
  • 1
  • 12
  • 30
5
votes
1 answer

How to make DataGrid a single stop as a whole on focus traversal with arrow keys row selection?

I have a Window with few controls on it. One of them is a DataGrid. I want to implement some non-default focus traversal. Namely: DataGrid is a single stop as a whole, not each row. When DataGrid is focused, user can navigate through rows using up…
Dawid
  • 763
  • 1
  • 8
  • 17
5
votes
6 answers

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?
DxCK
  • 4,402
  • 7
  • 50
  • 89
5
votes
4 answers

Aligning words in html

[HTML] What is the simplest solution (least amount of code) to align words when using non-monospace font ? I need to achieve this: « ... Just some random text. This is just some random text. This is just some random text.…
summerrain
  • 225
  • 1
  • 12
1
2 3
8 9