1 write to PropertyGridView
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.GridViewTextBox.cs (1)
20
PropertyGridView
= gridView;
34 references to PropertyGridView
System.Windows.Forms (34)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.GridViewTextBox.cs (28)
113
if (
PropertyGridView
.EditTextBoxNeedsCommit)
161
public bool OnClickHooked() => !
PropertyGridView
.CommitEditTextBox();
170
if (
PropertyGridView
.SelectedGridEntry is not null &&
171
ClientRectangle.Width <=
PropertyGridView
.SelectedGridEntry.GetValueTextWidth(Text, graphics, Font))
173
PropertyGridView
.ToolTip.ToolTip = PasswordProtect ? "" : Text;
223
if (
PropertyGridView
.SelectedGridEntry is not null
224
&& !
PropertyGridView
.SelectedGridEntry.Enumerable
225
&& !
PropertyGridView
.SelectedGridEntry.IsTextEditable
226
&&
PropertyGridView
.SelectedGridEntry.CanResetPropertyValue())
228
object? oldValue =
PropertyGridView
.SelectedGridEntry.PropertyValue;
229
PropertyGridView
.SelectedGridEntry.ResetPropertyValue();
230
PropertyGridView
.UnfocusSelection();
231
PropertyGridView
.OwnerGrid.OnPropertyValueSet(
PropertyGridView
.SelectedGridEntry, oldValue);
249
bool fwdReturn = !
PropertyGridView
.EditTextBoxNeedsCommit;
250
if (
PropertyGridView
.UnfocusSelection() && fwdReturn &&
PropertyGridView
.SelectedGridEntry is not null)
252
PropertyGridView
.SelectedGridEntry.OnValueReturnKey();
257
PropertyGridView
.OnEscape(this);
260
PropertyGridView
.F4Selection(true);
268
return !
PropertyGridView
.CommitEditTextBox();
291
if (nmhdr->hwndFrom ==
PropertyGridView
.ToolTip.Handle)
296
PositionTooltip(this,
PropertyGridView
.ToolTip, ClientRectangle);
300
PropertyGridView
.WndProc(ref m);
311
if (_filter &&
PropertyGridView
.FilterEditWndProc(ref m))
321
PropertyGridView
.Invalidate();
354
if (
PropertyGridView
.EditTextBoxNeedsCommit ||
PropertyGridView
.WantsTab(forward: (ModifierKeys & Keys.Shift) == 0))
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.GridViewTextBox.GridViewTextBoxAccessibleObject.cs (6)
43
|| !owner.
PropertyGridView
.IsEditTextBoxCreated
46
|| !owner.
PropertyGridView
.OwnerGrid.Created
47
|| owner.
PropertyGridView
.SelectedGridEntry?.AccessibilityObject is not PropertyDescriptorGridEntryAccessibleObject parent)
63
? owner.
PropertyGridView
.OwnerGrid?.AccessibilityObject
98
: owner.
PropertyGridView
.SelectedGridEntry?.AccessibilityObject.Name ?? base.Name;
108
|| owner.
PropertyGridView
.SelectedGridEntry is not PropertyDescriptorGridEntry propertyDescriptorGridEntry