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)
164
public bool OnClickHooked() => !
PropertyGridView
.CommitEditTextBox();
173
if (
PropertyGridView
.SelectedGridEntry is not null &&
174
ClientRectangle.Width <=
PropertyGridView
.SelectedGridEntry.GetValueTextWidth(Text, graphics, Font))
176
PropertyGridView
.ToolTip.ToolTip = PasswordProtect ? "" : Text;
226
if (
PropertyGridView
.SelectedGridEntry is not null
227
&& !
PropertyGridView
.SelectedGridEntry.Enumerable
228
&& !
PropertyGridView
.SelectedGridEntry.IsTextEditable
229
&&
PropertyGridView
.SelectedGridEntry.CanResetPropertyValue())
231
object? oldValue =
PropertyGridView
.SelectedGridEntry.PropertyValue;
232
PropertyGridView
.SelectedGridEntry.ResetPropertyValue();
233
PropertyGridView
.UnfocusSelection();
234
PropertyGridView
.OwnerGrid.OnPropertyValueSet(
PropertyGridView
.SelectedGridEntry, oldValue);
252
bool fwdReturn = !
PropertyGridView
.EditTextBoxNeedsCommit;
253
if (
PropertyGridView
.UnfocusSelection() && fwdReturn &&
PropertyGridView
.SelectedGridEntry is not null)
255
PropertyGridView
.SelectedGridEntry.OnValueReturnKey();
260
PropertyGridView
.OnEscape(this);
263
PropertyGridView
.F4Selection(true);
271
return !
PropertyGridView
.CommitEditTextBox();
294
if (nmhdr->hwndFrom ==
PropertyGridView
.ToolTip.Handle)
299
PositionTooltip(this,
PropertyGridView
.ToolTip, ClientRectangle);
303
PropertyGridView
.WndProc(ref m);
314
if (_filter &&
PropertyGridView
.FilterEditWndProc(ref m))
324
PropertyGridView
.Invalidate();
357
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