Base:
property
Text
System.Windows.Forms.Control.Text
7 writes to Text
PresentationUI (2)
MS\Internal\Documents\SigningDialog.cs (2)
185_reasonComboBox.Text = na; 193_reasonComboBox.Text = String.IsNullOrEmpty(_digitalSignatureRequest.Reason) ?
System.Windows.Forms (5)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (2)
2578Text = WindowText; 3542Text = s;
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxCell.cs (2)
1236EditingComboBox.Text = (string?)GetFormattedValue( 1315comboBox.Text = initialFormattedValueStr;
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxEditingControl.cs (1)
46Text = valueStr;
18 references to Text
PresentationUI (3)
MS\Internal\Documents\RequestedSignatureDialog.cs (2)
55_reason = _intentComboBox.Text, 85string intentComboBoxText = _intentComboBox.Text.Trim();
MS\Internal\Documents\SigningDialog.cs (1)
275return _reasonComboBox.Text;
System.Windows.Forms (15)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (11)
23[DefaultBindingProperty(nameof(Text))] 1038get => DropDownStyle == ComboBoxStyle.DropDownList ? string.Empty : Text.Substring(SelectionStart, SelectionLength); 1254string text = Text; 2867string text = Text; 3042Select(0, Text.Length); 3043SelectedText = Text; 3045SelectionLength = Text.Length; 3059int boundaryStart = ClientUtils.GetWordBoundaryStart(Text, SelectionStart); 3662if (FormattingEnabled && Text != _currentText && _dropDown) 3670_currentText = Text; 4094Text,
System\Windows\Forms\Controls\ComboBox\ComboBox.ModernComboAdapter.cs (2)
297|| string.IsNullOrEmpty(comboBox.Text)) 324comboBox.Text,
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxEditingControl.cs (2)
47if (string.Compare(valueStr, Text, true, CultureInfo.CurrentCulture) != 0) 103public virtual object GetEditingControlFormattedValue(DataGridViewDataErrorContexts context) => Text;