2 writes to SelectedGridEntry
System.Windows.Forms (2)
winforms\Managed\System\WinForms\PropertyGrid.cs (1)
1433
gridView.
SelectedGridEntry
= (GridEntry)value;
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (1)
2444
GridEntryHost.
SelectedGridEntry
= this;
30 references to SelectedGridEntry
System.Windows.Forms (30)
winforms\Managed\System\WinForms\PropertyGrid.cs (2)
1426
GridItem g = gridView.
SelectedGridEntry
;
2757
PropertyDescriptorGridEntry selectedEntry = gridView.
SelectedGridEntry
as PropertyDescriptorGridEntry;
winforms\Managed\System\WinForms\PropertyGridInternal\DropDownButton.cs (2)
255
_owningPropertyGrid.
SelectedGridEntry
!= null &&
257
return _owningPropertyGrid.
SelectedGridEntry
?.AccessibilityObject;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (5)
1084
if (_owningPropertyDescriptorGridEntry == propertyGridView.
SelectedGridEntry
) {
1085
if (propertyGridView.
SelectedGridEntry
.Enumerable) {
1106
if (_owningPropertyDescriptorGridEntry == propertyGridView.
SelectedGridEntry
) {
1107
if (propertyGridView.
SelectedGridEntry
.Enumerable && propertyGridView.DropDownButton.Visible) {
1167
if (_owningPropertyDescriptorGridEntry == propertyGridView.
SelectedGridEntry
&& propertyGridView.DropDownVisible) {
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (21)
5736
Type createType = gridView.
SelectedGridEntry
.PropertyType;
5741
object newValue = ice.CreateInstance(gridView.
SelectedGridEntry
, createType);
5939
if (gridView.UnfocusSelection() && gridView.
SelectedGridEntry
!= null) {
5940
gridView.
SelectedGridEntry
.OnValueReturnKey();
5956
InstanceCreationEditor editor = (ctl == null ? null : GetInstanceCreationEditor(gridView.
SelectedGridEntry
as PropertyDescriptorGridEntry));
6460
return _owningPropertyGridView.
SelectedGridEntry
.AccessibilityObject;
6720
if (psheet.
SelectedGridEntry
!= null &&
6721
ClientRectangle.Width <= psheet.
SelectedGridEntry
.GetValueTextWidth(this.Text, g, this.Font)) {
6780
if (psheet.
SelectedGridEntry
!= null && !psheet.
SelectedGridEntry
.Enumerable && !psheet.
SelectedGridEntry
.IsTextEditable && psheet.
SelectedGridEntry
.CanResetPropertyValue()) {
6781
object oldValue = psheet.
SelectedGridEntry
.PropertyValue;
6782
psheet.
SelectedGridEntry
.ResetPropertyValue();
6784
psheet.ownerGrid.OnPropertyValueSet(psheet.
SelectedGridEntry
, oldValue);
6808
psheet.
SelectedGridEntry
.OnValueReturnKey();
6966
return propertyGridView.
SelectedGridEntry
.AccessibilityObject;
7029
var selectedGridEntry = propertyGridView.
SelectedGridEntry
;
7048
PropertyDescriptorGridEntry propertyDescriptorGridEntry = this.propertyGridView.
SelectedGridEntry
as PropertyDescriptorGridEntry;
7708
GridEntry gridEntry = ((PropertyGridView)Owner).
SelectedGridEntry
;
7720
GridEntry gridEntry = ((PropertyGridView)Owner).
SelectedGridEntry
;