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) 161public bool OnClickHooked() => !PropertyGridView.CommitEditTextBox(); 170if (PropertyGridView.SelectedGridEntry is not null && 171ClientRectangle.Width <= PropertyGridView.SelectedGridEntry.GetValueTextWidth(Text, graphics, Font)) 173PropertyGridView.ToolTip.ToolTip = PasswordProtect ? "" : Text; 223if (PropertyGridView.SelectedGridEntry is not null 224&& !PropertyGridView.SelectedGridEntry.Enumerable 225&& !PropertyGridView.SelectedGridEntry.IsTextEditable 226&& PropertyGridView.SelectedGridEntry.CanResetPropertyValue()) 228object? oldValue = PropertyGridView.SelectedGridEntry.PropertyValue; 229PropertyGridView.SelectedGridEntry.ResetPropertyValue(); 230PropertyGridView.UnfocusSelection(); 231PropertyGridView.OwnerGrid.OnPropertyValueSet(PropertyGridView.SelectedGridEntry, oldValue); 249bool fwdReturn = !PropertyGridView.EditTextBoxNeedsCommit; 250if (PropertyGridView.UnfocusSelection() && fwdReturn && PropertyGridView.SelectedGridEntry is not null) 252PropertyGridView.SelectedGridEntry.OnValueReturnKey(); 257PropertyGridView.OnEscape(this); 260PropertyGridView.F4Selection(true); 268return !PropertyGridView.CommitEditTextBox(); 291if (nmhdr->hwndFrom == PropertyGridView.ToolTip.Handle) 296PositionTooltip(this, PropertyGridView.ToolTip, ClientRectangle); 300PropertyGridView.WndProc(ref m); 311if (_filter && PropertyGridView.FilterEditWndProc(ref m)) 321PropertyGridView.Invalidate(); 354if (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