51 writes to TabStop
Accessibility_Core_App (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;
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
184_toolStrip.TabStop = true;
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
128TabStop = 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)
926using ToolStrip toolStrip1 = new() { TabStop = true, }; 927using ToolStrip toolStrip2 = new() { TabStop = true, }; 983using ToolStrip toolStrip1 = new() { TabStop = true }; 984using ToolStrip toolStrip2 = new() { TabStop = true };
System\Windows\Forms\ToolStripDropDownTests.cs (11)
2575TabStop = value 2581control.TabStop = value; 2586control.TabStop = value; 2604control.TabStop = value; 2612control.TabStop = value; 2620control.TabStop = value; 2633TabStop = true 2645control.TabStop = false; 2650control.TabStop = false; 2655control.TabStop = true; 2661control.TabStop = false;
System\Windows\Forms\ToolStripTests.cs (17)
3717TabStop = value 3724control.TabStop = value; 3730control.TabStop = !value; 3749control.TabStop = value; 3758control.TabStop = value; 3767control.TabStop = !value; 3781TabStop = true 3793control.TabStop = false; 3798control.TabStop = false; 3803control.TabStop = true; 3809control.TabStop = false; 4810using ToolStrip toolStrip = new() { RightToLeft = rightToLeft, TabStop = tabStop }; 4831using ToolStrip toolStrip = new() { RightToLeft = rightToLeft, TabStop = tabStop }; 4856using ToolStrip toolStrip = new() { RightToLeft = rightToLeft, TabStop = tabStop }; 4877using ToolStrip toolStrip = new() { RightToLeft = rightToLeft, TabStop = tabStop }; 6788TabStop = tabStop 7291using ToolStrip toolStrip = new() { LayoutStyle = toolStripLayoutStyle, TabStop = tabStop, GripStyle = gripStyle };
System.Windows.Forms.UI.IntegrationTests (1)
MenuStripTests.cs (1)
15using MenuStrip menuStrip = new() { TabStop = value };
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)
2056bool forward = LastKeyData == Keys.Tab || (TabStop && start is null && LastKeyData != Keys.Left); 2720&& !TabStop 2798if (!hasModifiers && !TabStop) 3007if (TabStop) 3714SetStyle(ControlStyles.Selectable, TabStop); 3979if (!DesignMode && !TabStop && (Focused || ContainsFocus)) 4159if (TabStop) 4405if (!TabStop && !IsDropDown) 4629if (!IsDropDown && !TabStop)
System\Windows\Forms\Controls\ToolStrips\ToolStripManager.cs (1)
191bool canChange = !toolStrip.TabStop &&
System.Windows.Forms.Tests (25)
System\Windows\Forms\MenuStripTests.cs (1)
137Assert.False(control.TabStop);
System\Windows\Forms\StatusStripTests.cs (1)
140Assert.False(control.TabStop);
System\Windows\Forms\ToolStripDropDownTests.cs (11)
145Assert.False(control.TabStop); 2577Assert.Equal(value, control.TabStop); 2582Assert.Equal(value, control.TabStop); 2587Assert.Equal(value, control.TabStop); 2605Assert.Equal(value, control.TabStop); 2613Assert.Equal(value, control.TabStop); 2621Assert.Equal(value, control.TabStop); 2646Assert.False(control.TabStop); 2651Assert.False(control.TabStop); 2656Assert.True(control.TabStop); 2662Assert.False(control.TabStop);
System\Windows\Forms\ToolStripTests.cs (12)
153Assert.False(control.TabStop); 308Assert.False(control.TabStop); 3719Assert.Equal(value, control.TabStop); 3725Assert.Equal(value, control.TabStop); 3731Assert.Equal(!value, control.TabStop); 3750Assert.Equal(value, control.TabStop); 3759Assert.Equal(value, control.TabStop); 3768Assert.Equal(!value, control.TabStop); 3794Assert.False(control.TabStop); 3799Assert.False(control.TabStop); 3804Assert.True(control.TabStop); 3810Assert.False(control.TabStop);