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