62 writes to TabStop
PresentationUI (26)
MS\Internal\Documents\Application\DocumentPropertiesDialog.Designer.cs (22)
214this._language.TabStop = false; 224this._title.TabStop = false; 241this._identifier.TabStop = false; 298this._version.TabStop = false; 315this._category.TabStop = false; 324this._status.TabStop = false; 333this._content.TabStop = false; 351this._author.TabStop = false; 360this._subject.TabStop = false; 370this._description.TabStop = false; 381this._keywords.TabStop = false; 478this._size.TabStop = false; 496this._filename.TabStop = false; 506this._documentType.TabStop = false; 564this._documentPrintedDate.TabStop = false; 573this._documentModifiedDate.TabStop = false; 582this._documentCreatedDate.TabStop = false; 591this._revision.TabStop = false; 640this._lastSaved.TabStop = false; 680this._fileModifiedDate.TabStop = false; 689this._fileAccessedDate.TabStop = false; 714this._fileCreatedDate.TabStop = false;
MS\Internal\Documents\DialogDivider.cs (1)
29TabStop = false;
MS\Internal\Documents\SignatureSummaryDialog.cs (2)
482_listBoxSummary.TabStop = true; 504_listBoxSummary.TabStop = false;
MS\Internal\Documents\SignatureSummaryDialog.Designer.cs (1)
156_listBoxSummary.TabStop = false;
System.Windows.Forms (24)
System\Windows\Forms\ActiveX\AxHost.AxContainer.ExtenderProxy.cs (1)
220control.TabStop = value;
System\Windows\Forms\Controls\Buttons\RadioButton.cs (1)
314set => base.TabStop = value;
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxEditingControl.cs (1)
16TabStop = false;
System\Windows\Forms\Controls\DataGridView\DataGridViewTextBoxEditingControl.cs (1)
19TabStop = false;
System\Windows\Forms\Controls\GroupBox\GroupBox.cs (1)
226set => base.TabStop = value;
System\Windows\Forms\Controls\Labels\Label.cs (1)
674set => base.TabStop = value;
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (1)
141TabStop = true;
System\Windows\Forms\Controls\PictureBox\PictureBox.cs (1)
868set => base.TabStop = value;
System\Windows\Forms\Controls\ProgressBar\ProgressBar.cs (1)
440set => base.TabStop = value;
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (2)
170_gridView.TabStop = true; 214_helpPane.TabStop = false;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridErrorDialog.cs (2)
93_detailsTextBox.TabStop = !_detailsTextBox.TabStop; 257TabStop = false,
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (2)
142TabStop = true; 304TabStop = false,
System\Windows\Forms\Controls\Splitter\Splitter.cs (1)
430set => base.TabStop = value;
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
1661set => base.TabStop = value;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.cs (1)
325base.TabStop = value;
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (1)
61_upDownButtons.TabStop = false;
System\Windows\Forms\Dialogs\ThreadExceptionDialog.cs (1)
325_details.TabStop = false;
System\Windows\Forms\Form.cs (1)
1989set => base.TabStop = value;
System\Windows\Forms\Panels\Panel.cs (1)
187set => base.TabStop = value;
System\Windows\Forms\Printing\PrintPreviewControl.cs (1)
289set => base.TabStop = value;
System\Windows\Forms\Scrolling\ScrollBar.cs (1)
317set => base.TabStop = value;
System.Windows.Forms.Design (11)
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.cs (1)
243_button.TabStop = _button.Ellipsis;
System\Drawing\Design\ColorEditor.ColorUI.cs (1)
172_tabControl.TabStop = false;
System\Windows\Forms\Design\AnchorEditor.AnchorUI.cs (7)
97_right.TabStop = true; 104_left.TabStop = true; 111_top.TabStop = true; 118_bottom.TabStop = true; 186TabStop = false; 201TabStop = false; 221TabStop = true;
System\Windows\Forms\Design\ComponentTray.cs (1)
1932TabStop = false;
System\Windows\Forms\Design\DockEditor.DockUI.cs (1)
296TabStop = false;
WindowsFormsIntegration (1)
System\Windows\Integration\WindowsFormsHost.cs (1)
793this.TabStop = false;
22 references to TabStop
System.Windows.Forms (21)
System\Windows\Forms\Accessibility\Control.ControlAccessibleObject.cs (1)
416if (previous.Visible && previous.TabStop)
System\Windows\Forms\ActiveX\AxHost.AxContainer.ExtenderProxy.cs (1)
215get => GetControl()?.TabStop ?? BOOL.FALSE;
System\Windows\Forms\Control.cs (3)
3155if (TabStop != value) 8564|| ((validationConstraints & ValidationConstraints.TabStop) == ValidationConstraints.TabStop && !c.TabStop)) 10006&& (!tabStopOnly || ctl.TabStop)
System\Windows\Forms\Controls\Buttons\RadioButton.cs (1)
313get => base.TabStop;
System\Windows\Forms\Controls\GroupBox\GroupBox.cs (1)
225get => base.TabStop;
System\Windows\Forms\Controls\Labels\Label.cs (1)
673get => base.TabStop;
System\Windows\Forms\Controls\PictureBox\PictureBox.cs (1)
867get => base.TabStop;
System\Windows\Forms\Controls\ProgressBar\ProgressBar.cs (1)
439get => base.TabStop;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridErrorDialog.cs (1)
93_detailsTextBox.TabStop = !_detailsTextBox.TabStop;
System\Windows\Forms\Controls\Splitter\Splitter.cs (1)
429get => base.TabStop;
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
1660get => base.TabStop;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.cs (1)
320get => base.TabStop;
System\Windows\Forms\Form.cs (1)
1988get => base.TabStop;
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
440if (ctl is not null && ctl.CanSelect && ctl.TabStop)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (2)
1863if (ctl.CanSelect && ctl.TabStop) 1946if (ctl.CanSelect && (!tabStopOnly || ctl.TabStop))
System\Windows\Forms\Panels\Panel.cs (1)
186get => base.TabStop;
System\Windows\Forms\Printing\PrintPreviewControl.cs (1)
288get => base.TabStop;
System\Windows\Forms\Scrolling\ScrollBar.cs (1)
316get => base.TabStop;
WindowsFormsIntegration (1)
System\Windows\Integration\ElementHost.cs (1)
947OnPropertyChanged("TabStop", this.TabStop);