51 writes to TabStop
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
184
_toolStrip.
TabStop
= true;
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
127
TabStop
= false;
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ToolStripTemplateNode.cs (1)
1637
TabStop
= true;
System.Windows.Forms.Tests (32)
System\Windows\Forms\ControlTests.cs (4)
928
using ToolStrip toolStrip1 = new() {
TabStop
= true, };
929
using ToolStrip toolStrip2 = new() {
TabStop
= true, };
985
using ToolStrip toolStrip1 = new() {
TabStop
= true };
986
using ToolStrip toolStrip2 = new() {
TabStop
= true };
System\Windows\Forms\ToolStripDropDownTests.cs (11)
2577
TabStop
= value
2583
control.
TabStop
= value;
2588
control.
TabStop
= value;
2606
control.
TabStop
= value;
2614
control.
TabStop
= value;
2622
control.
TabStop
= value;
2635
TabStop
= true
2647
control.
TabStop
= false;
2652
control.
TabStop
= false;
2657
control.
TabStop
= true;
2663
control.
TabStop
= false;
System\Windows\Forms\ToolStripTests.cs (17)
3719
TabStop
= value
3726
control.
TabStop
= value;
3732
control.
TabStop
= !value;
3751
control.
TabStop
= value;
3760
control.
TabStop
= value;
3769
control.
TabStop
= !value;
3783
TabStop
= true
3795
control.
TabStop
= false;
3800
control.
TabStop
= false;
3805
control.
TabStop
= true;
3811
control.
TabStop
= false;
4812
using ToolStrip toolStrip = new() { RightToLeft = rightToLeft,
TabStop
= tabStop };
4833
using ToolStrip toolStrip = new() { RightToLeft = rightToLeft,
TabStop
= tabStop };
4858
using ToolStrip toolStrip = new() { RightToLeft = rightToLeft,
TabStop
= tabStop };
4879
using ToolStrip toolStrip = new() { RightToLeft = rightToLeft,
TabStop
= tabStop };
6790
TabStop
= tabStop
7293
using ToolStrip toolStrip = new() { LayoutStyle = toolStripLayoutStyle,
TabStop
= tabStop, GripStyle = gripStyle };
System.Windows.Forms.UI.IntegrationTests (1)
MenuStripTests.cs (1)
15
using MenuStrip menuStrip = new() {
TabStop
= value };
TestPassApp (8)
DataControls.Designer.cs (1)
107
this.bindingNavigator1.
TabStop
= true;
Menu_Toolbars_controls.Designer.cs (4)
117
menuStrip1.
TabStop
= true;
126
contextMenuStrip1.
TabStop
= true;
428
statusStrip1.
TabStop
= true;
509
toolStrip1.
TabStop
= true;
ToolStripContainer.Designer.cs (3)
141
this.toolStrip1.
TabStop
= true;
285
this.statusStrip1.
TabStop
= true;
343
this.menuStrip1.
TabStop
= true;
WinFormsControlsTest (7)
MenuStripAndCheckedListBox.Designer.cs (1)
79
this.menuStrip1.
TabStop
= true;
ToolStripSeparatorPreferredSize.cs (1)
53
_toolStrip1.
TabStop
= true;
ToolStripTests.Designer.cs (5)
93
this.toolStrip1.
TabStop
= true;
113
this.toolStrip2.
TabStop
= true;
125
this.toolStrip3.
TabStop
= true;
137
this.toolStrip4.
TabStop
= true;
386
this.statusStrip1.
TabStop
= true;
37 references to TabStop
System.Windows.Forms (12)
System\Windows\Forms\Controls\Menus\MenuStrip.cs (2)
169
if (!
TabStop
&& !DesignMode && IsAccessibilityObjectCreated)
187
if (!
TabStop
&& !DesignMode && IsAccessibilityObjectCreated)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (9)
2053
bool forward = LastKeyData == Keys.Tab || (
TabStop
&& start is null && LastKeyData != Keys.Left);
2717
&& !
TabStop
2795
if (!hasModifiers && !
TabStop
)
3004
if (
TabStop
)
3712
SetStyle(ControlStyles.Selectable,
TabStop
);
3977
if (!DesignMode && !
TabStop
&& (Focused || ContainsFocus))
4157
if (
TabStop
)
4405
if (!
TabStop
&& !IsDropDown)
4627
if (!IsDropDown && !
TabStop
)
System\Windows\Forms\Controls\ToolStrips\ToolStripManager.cs (1)
190
bool canChange = !toolStrip.
TabStop
&&
System.Windows.Forms.Tests (25)
System\Windows\Forms\MenuStripTests.cs (1)
139
Assert.False(control.
TabStop
);
System\Windows\Forms\StatusStripTests.cs (1)
142
Assert.False(control.
TabStop
);
System\Windows\Forms\ToolStripDropDownTests.cs (11)
147
Assert.False(control.
TabStop
);
2579
Assert.Equal(value, control.
TabStop
);
2584
Assert.Equal(value, control.
TabStop
);
2589
Assert.Equal(value, control.
TabStop
);
2607
Assert.Equal(value, control.
TabStop
);
2615
Assert.Equal(value, control.
TabStop
);
2623
Assert.Equal(value, control.
TabStop
);
2648
Assert.False(control.
TabStop
);
2653
Assert.False(control.
TabStop
);
2658
Assert.True(control.
TabStop
);
2664
Assert.False(control.
TabStop
);
System\Windows\Forms\ToolStripTests.cs (12)
155
Assert.False(control.
TabStop
);
310
Assert.False(control.
TabStop
);
3721
Assert.Equal(value, control.
TabStop
);
3727
Assert.Equal(value, control.
TabStop
);
3733
Assert.Equal(!value, control.
TabStop
);
3752
Assert.Equal(value, control.
TabStop
);
3761
Assert.Equal(value, control.
TabStop
);
3770
Assert.Equal(!value, control.
TabStop
);
3796
Assert.False(control.
TabStop
);
3801
Assert.False(control.
TabStop
);
3806
Assert.True(control.
TabStop
);
3812
Assert.False(control.
TabStop
);