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)
2591
Text
= WindowText;
3555
Text
= s;
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxCell.cs (2)
1236
EditingComboBox.
Text
= (string?)GetFormattedValue(
1315
comboBox.
Text
= initialFormattedValueStr;
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxEditingControl.cs (1)
46
Text
= valueStr;
18 references to Text
PresentationUI (3)
MS\Internal\Documents\RequestedSignatureDialog.cs (2)
55
_reason = _intentComboBox.
Text
,
85
string intentComboBoxText = _intentComboBox.
Text
.Trim();
MS\Internal\Documents\SigningDialog.cs (1)
275
return _reasonComboBox.
Text
;
System.Windows.Forms (15)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (11)
23
[DefaultBindingProperty(nameof(
Text
))]
1042
get => DropDownStyle == ComboBoxStyle.DropDownList ? string.Empty :
Text
.Substring(SelectionStart, SelectionLength);
1258
string text =
Text
;
2880
string text =
Text
;
3055
Select(0,
Text
.Length);
3056
SelectedText =
Text
;
3058
SelectionLength =
Text
.Length;
3072
int boundaryStart = ClientUtils.GetWordBoundaryStart(
Text
, SelectionStart);
3675
if (FormattingEnabled &&
Text
!= _currentText && _dropDown)
3683
_currentText =
Text
;
4104
Text
,
System\Windows\Forms\Controls\ComboBox\ComboBox.ModernComboAdapter.cs (2)
304
|| string.IsNullOrEmpty(comboBox.
Text
))
331
comboBox.
Text
,
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxEditingControl.cs (2)
47
if (string.Compare(valueStr,
Text
, true, CultureInfo.CurrentCulture) != 0)
103
public virtual object GetEditingControlFormattedValue(DataGridViewDataErrorContexts context) =>
Text
;