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