7 types derived from GridEntry
System.Windows.Forms (4)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\ArrayElementGridEntry.cs (1)
6
internal class ArrayElementGridEntry :
GridEntry
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\CategoryGridEntry.cs (1)
12
internal sealed partial class CategoryGridEntry :
GridEntry
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
11
internal partial class PropertyDescriptorGridEntry :
GridEntry
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\SingleSelectRootGridEntry.cs (1)
14
internal class SingleSelectRootGridEntry :
GridEntry
, IRootGridEntry
System.Windows.Forms.Tests (3)
System\Windows\Forms\MultiPropertyDescriptorGridEntryTests.cs (1)
14
private sealed class TestGridEntry :
GridEntry
System\Windows\Forms\PropertyGridInternal\AccessibleObjects\PropertyDescriptorGridEntry.PropertyDescriptorGridEntryAccessibleObjectTests.cs (1)
126
private class TestGridEntry :
GridEntry
System\Windows\Forms\PropertyGridInternal\ArrayElementGridEntryTests.cs (1)
8
private class TestGridEntry :
GridEntry
273 references to GridEntry
System.Windows.Forms (230)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (11)
48
private Dictionary<string,
GridEntry
>? _viewTabProperties;
67
private
GridEntry
? _defaultEntry;
68
private
GridEntry
? _rootEntry;
1141
set => _gridView.SelectedGridEntry = (
GridEntry
)value;
1858
foreach (
GridEntry
gridEntry in _viewTabProperties.Values)
2188
internal
GridEntry
? GetDefaultGridEntry() => _defaultEntry ??= _currentEntries?[0];
2952
else if (changedItem is
GridEntry
gridEntry && gridEntry.Enumerable)
2966
internal void OnSelectedGridItemChanged(
GridEntry
? oldEntry,
GridEntry
? newEntry)
4150
if (_viewTabProperties is not null && _viewTabProperties.TryGetValue(tabName, out
GridEntry
? value))
4159
_rootEntry =
GridEntry
.CreateRootGridEntry(
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\ArrayElementGridEntry.cs (1)
10
public ArrayElementGridEntry(PropertyGrid ownerGrid,
GridEntry
parent, int index)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\CategoryGridEntry.CategoryGridEntryAccessibleObject.cs (1)
53
foreach (
var
topLevelGridEntry in topLevelGridEntries)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\CategoryGridEntry.cs (5)
10
/// Virtual, collapsible parent <see cref="
GridEntry
"/>.
17
public CategoryGridEntry(PropertyGrid ownerGrid,
GridEntry
parent, string name, IEnumerable<
GridEntry
> children)
26
foreach (
var
child in ChildCollection)
158
internal override bool SendNotification(
GridEntry
entry, Notify notification)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (40)
42
private
GridEntry
? _parent;
71
protected GridEntry(PropertyGrid ownerGrid,
GridEntry
? parent)
208
/// The <see cref="PropertyTab"/> that the <see cref="
GridEntry
"/> belongs to.
218
/// Returns the default child <see cref="
GridEntry
"/> of this item.
225
internal virtual
GridEntry
? DefaultChild
522
/// The <see cref="PropertyGridView"/> that this <see cref="
GridEntry
"/> belongs to.
638
/// to the upper left corner of the <see cref="
GridEntry
"/>.
662
/// Recursively resets outline rectangles for this <see cref="
GridEntry
"/> and it's children.
669
foreach (
GridEntry
child in Children)
676
public
GridEntry
? ParentGridEntry
734
/// Returns the Type of the value of this <see cref="
GridEntry
"/>, or null if the value is null.
739
/// Gets or sets the value for the property that is represented by this <see cref="
GridEntry
"/>.
877
internal static
GridEntry
? CreateRootGridEntry(
938
GridEntry
[]? childProperties = GetChildEntries();
1028
foreach (
GridEntry
gridEntry in _children)
1114
internal bool EqualsIgnoreParent(
GridEntry
entry)
1131
if (obj is
GridEntry
entry && EqualsIgnoreParent(entry))
1158
/// Returns the index of a child <see cref="
GridEntry
"/>.
1160
internal int GetChildIndex(
GridEntry
entry) => Children.IndexOf(entry);
1164
/// object being browsed. Walks up the <see cref="
GridEntry
"/> tree looking for an owner that is an
1239
/// Returns a string with info about the currently selected <see cref="
GridEntry
"/>.
1247
/// Returns the child <see cref="
GridEntry
"/> items for this <see cref="
GridEntry
"/>.
1249
private
GridEntry
[]? GetChildEntries()
1260
GridEntry
[]? entries = null;
1333
entries = new
GridEntry
[objArray.Length];
1349
entries = new
GridEntry
[properties.Count];
1355
GridEntry
newEntry;
1493
/// Paints the label portion of this <see cref="
GridEntry
"/> into the given <see cref="Graphics"/> object.
1497
/// This is called by the <see cref="
GridEntry
"/> host (the <see cref="PropertyGridView"/>) when this
1498
/// <see cref="
GridEntry
"/> needs to be painted.
1618
/// Paints the outline portion (the expand / collapse area to the left) of this <see cref="
GridEntry
"/> into
1772
/// Paints the value portion of this <see cref="
GridEntry
"/> into the given <see cref="Graphics"/> object.
1773
/// This is called by the <see cref="
GridEntry
"/> host (the <see cref="PropertyGridView"/>) when this
1774
/// <see cref="
GridEntry
"/> is to be painted.
2025
/// Called when the outline icon portion of this <see cref="
GridEntry
"/> is clicked.
2141
internal virtual bool SendNotification(
GridEntry
entry, Notify notification)
2171
foreach (
GridEntry
child in ChildCollection)
2213
((
GridEntry
)o).Refresh();
2247
/// Sets the value of this <see cref="
GridEntry
"/> from text.
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.Flags.cs (2)
55
/// Used to distribute read-only behavior to child properties when the root <see cref="
GridEntry
"/> is
56
/// read-only or one of the objects in the root <see cref="
GridEntry
"/> (with multiple select) is read-only.
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.GridEntryAccessibleObject.cs (31)
12
internal class GridEntryAccessibleObject : AccessibleObject, IOwnedObject<
GridEntry
>
14
private readonly WeakReference<
GridEntry
> _owningGridEntry;
20
public GridEntryAccessibleObject(
GridEntry
owner)
29
=> PropertyGridView is not null && PropertyGridView.IsHandleCreated && this.TryGetOwnerAs(out
GridEntry
? owner)
37
if (!this.TryGetOwnerAs(out
GridEntry
? owner) || !owner.Expandable)
52
internal override bool CanGetDefaultActionInternal => !this.TryGetOwnerAs(out
GridEntry
? owner) || !owner.Expandable;
55
=> this.TryGetOwnerAs(out
GridEntry
? owner) ? owner.PropertyDescription : string.Empty;
60
=> !this.TryGetOwnerAs(out
GridEntry
? owner) ? ExpandCollapseState.ExpandCollapseState_Collapsed : owner.Expandable
64
public override string? Help => this.TryGetOwnerAs(out
GridEntry
? owner) ? owner.PropertyDescription : string.Empty;
68
public override string? Name => this.TryGetOwnerAs(out
GridEntry
? owner) ? owner.PropertyLabel : null;
73
this.TryGetOwnerAs(out
GridEntry
? owner) ? owner.OwnerGridView?.AccessibilityObject : null;
83
if (PropertyGridView is null || !PropertyGridView.IsHandleCreated || !this.TryGetOwnerAs(out
GridEntry
? owner))
143
get => this.TryGetOwnerAs(out
GridEntry
? owner) ? owner.GetPropertyTextValue() : null;
146
if (this.TryGetOwnerAs(out
GridEntry
? owner))
169
|| !this.TryGetOwnerAs(out
GridEntry
? owner))
200
/// For <see cref="
GridEntry
" /> the item hash code to make the ID unique. Grid items are not controls,
209
this.TryGetOwnerAs(out
GridEntry
? owner)
230
GridEntry
? IOwnedObject<
GridEntry
>.Owner
231
=> _owningGridEntry.TryGetTarget(out
GridEntry
? target) ? target : null;
235
if (PropertyGridView is not null && PropertyGridView.IsHandleCreated && this.TryGetOwnerAs(out
GridEntry
? owner))
246
=> this.TryGetOwnerAs(out
GridEntry
? owner) ? owner.HasFocus ? this : null : null;
254
|| !this.TryGetOwnerAs(out
GridEntry
? owner))
283
if (PropertyGridView is null || !PropertyGridView.IsHandleCreated || !this.TryGetOwnerAs(out
GridEntry
? owner))
310
if (this.TryGetOwnerAs(out
GridEntry
? owner) && owner.Expandable && owner.Expanded)
318
if (this.TryGetOwnerAs(out
GridEntry
? owner) && owner.Expandable && !owner.Expanded)
329
if (this.TryGetOwnerAs(out
GridEntry
? owner) && owner.ParentGridEntry is { } parentGridEntry)
356
UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(this.TryGetOwnerAs(out
GridEntry
? owner) && owner.HasFocus),
363
internal override bool IsIAccessibleExSupported() => this.TryGetOwnerAs(out
GridEntry
? owner) && owner.Expandable;
375
if (this.TryGetOwnerAs(out
GridEntry
? owner) && owner.Expandable)
386
if (!this.TryGetOwnerAs(out
GridEntry
? owner) || owner.OwnerGrid is null || owner.OwnerGrid.SortedByCategories)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntryCollection.cs (3)
6
internal sealed class GridEntryCollection : NonNullCollection<
GridEntry
>, IDisposable
10
public GridEntryCollection(IEnumerable<
GridEntry
>? items = null, bool disposeItems = true)
26
foreach (
GridEntry
entry in this)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntryComparer.cs (3)
6
internal class GridEntryComparer : IComparer<
GridEntry
>
10
public int Compare(
GridEntry
? x,
GridEntry
? y)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\ImmutablePropertyDescriptorGridEntry.cs (4)
24
GridEntry
parent,
41
GridEntry
? parentEntry = InstanceParentGridEntry;
101
private
GridEntry
? InstanceParentGridEntry
105
GridEntry
? parent = ParentGridEntry;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\IRootGridEntry.cs (1)
9
/// A top level <see cref="
GridEntry
"/> that represents the selected object or objects in the
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (3)
16
GridEntry
parent,
181
internal override bool SendNotification(
GridEntry
entry, Notify notification)
195
protected override void NotifyParentsOfChanges(
GridEntry
? entry)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiSelectRootGridEntry.cs (1)
11
/// Root <see cref="
GridEntry
"/> for the <see cref="PropertyGrid"/> when there are multiple objects
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiSelectRootGridEntry.PropertyMerger.cs (2)
16
GridEntry
parentEntry,
98
GridEntry
parentEntry)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.cs (4)
38
GridEntry
parent,
77
GridEntry
entry = this;
357
protected virtual void NotifyParentsOfChanges(
GridEntry
? entry)
758
GridEntry
? parent = ParentGridEntry;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.PropertyDescriptorGridEntryAccessibleObject.cs (1)
222
foreach (
GridEntry
childEntry in owner.Children)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (91)
74
private
GridEntry
? _selectedGridEntry;
100
private
GridEntry
? _lastClickedEntry;
191
/// the selected row's <see cref="
GridEntry
"/>.
243
/// the selected row's <see cref="
GridEntry
"/>.
503
internal
GridEntry
? SelectedGridEntry
510
foreach (
GridEntry
entry in _allGridEntries)
520
GridEntry
? equivalentEntry = FindEquivalentGridEntry(new GridEntryCollection(new[] { value }, disposeItems: false));
615
internal Rectangle AccessibilityGetGridEntryBounds(
GridEntry
gridEntry)
646
internal int AccessibilityGetGridEntryChildID(
GridEntry
gridEntry)
668
internal void AccessibilitySelect(
GridEntry
entry)
688
GridEntry
entry = entries[i];
736
GridEntry
entry = entries[i];
819
GridEntry
? gridEntry = GetGridEntryFromRow(_selectedRow);
1091
private static int GetEntryLabelIndent(
GridEntry
gridEntry) => gridEntry.PropertyLabelIndent + 1;
1093
private int GetEntryLabelLength(Graphics g,
GridEntry
gridEntry)
1100
private bool IsEntryLabelLong(Graphics g,
GridEntry
gridEntry)
1119
GridEntry
? gridEntry = GetGridEntryFromRow(row);
1174
GridEntry
? gridEntry = GetGridEntryFromRow(row);
1200
GridEntry
.PaintValueFlags.PaintInPlace
1201
|
GridEntry
.PaintValueFlags.CheckShouldSerialize);
1221
GridEntry
? gridEntry = GetGridEntryFromRow(_selectedRow);
1261
GridEntry
? gridEntry = GetGridEntryFromRow(row);
1371
GridEntry
entry = _allGridEntries[i];
1463
var
gridEntry = GetGridEntryFromRow(_selectedRow);
1507
GridEntry
? gridEntry = GetGridEntryFromRow(row);
1536
GridEntry
? gridEntry = GetGridEntryFromRow(_selectedRow);
1597
GridEntry
? gridEntry = GetGridEntryFromRow(_selectedRow);
1606
private
GridEntry
? FindEquivalentGridEntry(GridEntryCollection? gridEntries)
1620
GridEntry
? targetEntry = null;
1704
var newEntries = new
GridEntry
[TotalProperties];
1719
private static int GetCurrentValueIndex(
GridEntry
gridEntry)
1801
private static GridEntryCollection? GetGridEntryHierarchy(
GridEntry
? gridEntry)
1811
var entries = new
GridEntry
[depth + 1];
1823
return new GridEntryCollection(new
GridEntry
[] { gridEntry }, disposeItems: false);
1826
private
GridEntry
? GetGridEntryFromRow(int row) => GetGridEntryFromOffset(row + GetScrollOffset());
1828
private
GridEntry
? GetGridEntryFromOffset(int offset)
1842
private static int GetGridEntriesFromOutline(GridEntryCollection? entries, int current, int target,
GridEntry
[] targetEntries)
1859
GridEntry
currentEntry = entries[i];
1935
internal int GetRowFromGridEntry(
GridEntry
? gridEntry)
1982
GridEntry
? gridEntry = (entry < 0) ? GetGridEntryFromRow(_selectedRow) : GetGridEntryFromOffset(entry);
2009
internal void InvalidateGridEntryValue(
GridEntry
ge)
2266
GridEntry
? gridEntry = GetGridEntryFromRow(_selectedRow);
2323
GridEntry
gridEntry = GetGridEntryFromRow(_selectedRow)!;
2331
e.State.HasFlag(DrawItemState.Selected) ?
GridEntry
.PaintValueFlags.DrawSelected : default,
2369
GridEntry
? gridEntry = GetGridEntryFromRow(_selectedRow);
2454
private bool ProcessEnumUpAndDown(
GridEntry
entry, Keys keyCode, bool closeDropDown = true)
2514
GridEntry
gridEntry = GetGridEntryFromRow(_selectedRow)!;
2539
GridEntry
? gridEntry = GetGridEntryFromRow(_selectedRow);
2722
GridEntry
? entry = GetGridEntryFromRow(_selectedRow);
3015
GridEntry
? gridEntry = GetGridEntryFromRow(pos.Y);
3088
GridEntry
? gridItem = GetGridEntryFromRow(rowMoveCurrent);
3409
GridEntry
gridEntry = (
GridEntry
)s!;
3423
GridEntry
gridEntry = (
GridEntry
)s!;
3437
_lastClickedEntry = (
GridEntry
?)sender;
3443
var
gridEntry = (
GridEntry
)sender!;
3467
_lastClickedEntry = (
GridEntry
?)sender;
3543
var
parent = (
GridEntry
)s;
3547
var entries = new
GridEntry
[_allGridEntries!.Count];
3570
var newEntries = new
GridEntry
[newArraySize];
3663
GridEntry
? oldGridEntry = _selectedGridEntry;
3700
GridEntry
? gridEntry = GetGridEntryFromRow(row);
3967
internal void RecursivelyExpand(
GridEntry
? gridEntry, bool initialize, bool expand, int maxExpands)
3984
GridEntry
? selectedEntry = _selectedGridEntry;
4002
foreach (
GridEntry
entry in TopLevelGridEntries)
4020
GridEntry
? gridEntry = null;
4143
GridEntry
? gridEntry = GetGridEntryFromRow(_selectedRow);
4181
GridEntry
entry = entries[i];
4193
GridEntry
? currentEntry = _selectedGridEntry;
4234
internal void SelectGridEntry(
GridEntry
? entry, bool pageIn)
4302
GridEntry
? gridEntry = GetGridEntryFromRow(row);
4419
GridEntry
? oldSelectedGridEntry = _selectedGridEntry;
4501
internal void SetExpand(
GridEntry
entry, bool value)
4534
GridEntry
? selectedEntry = _selectedGridEntry;
4537
for (
GridEntry
? currentEntry = selectedEntry; currentEntry is not null; currentEntry = currentEntry.ParentGridEntry)
4642
GridEntry
? currentEntry = _selectedGridEntry;
4658
internal bool CommitValue(
GridEntry
entry, object? value, bool closeDropDown = true)
4754
GridEntry
? currentEntry = _selectedGridEntry;
4788
foreach (
GridEntry
gridEntry in _allGridEntries)
5073
GridEntry
? gridEntry = GetGridEntryFromRow(_selectedRow);
5102
private void UpdateHelpAttributes(
GridEntry
? oldEntry,
GridEntry
? newEntry)
5115
GridEntry
? temp = oldEntry;
5137
private static void UpdateHelpAttributes(IHelpService helpService,
GridEntry
? entry, bool addAsF1)
5206
GridEntry
? gridEntry = GetGridEntryFromRow(_selectedRow);
5222
private void UpdateResetCommand(
GridEntry
? gridEntry)
5288
GridEntry
? curEntry = GetGridEntryFromRow(mouseLoc.Y);
5425
foreach (
GridEntry
entry in TopLevelGridEntries)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.DropDownHolder.DropDownHolderAccessibleObject.cs (1)
30
GridEntry
? selectedEntry = gridView?.SelectedGridEntry;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.GridPositionData.cs (2)
21
public
GridEntry
? Restore(PropertyGridView gridView)
24
GridEntry
? entry = gridView.FindEquivalentGridEntry(_selectedItemTree);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.PropertyGridViewAccessibleObject.cs (16)
101
public AccessibleObject? Next(
GridEntry
current)
109
GridEntry
? nextEntry = owner.GetGridEntryFromRow(++row);
149
internal static AccessibleObject? GetPreviousGridEntry(
GridEntry
currentGridEntry, GridEntryCollection? gridEntryCollection, out bool currentGridEntryFound)
158
GridEntry
? previousGridEntry = null;
160
foreach (
GridEntry
gridEntry in gridEntryCollection)
206
internal static AccessibleObject? GetNextGridEntry(
GridEntry
currentGridEntry, GridEntryCollection? gridEntryCollection, out bool currentGridEntryFound)
215
foreach (
GridEntry
gridEntry in gridEntryCollection)
262
var targetEntries = new
GridEntry
[1];
293
var targetEntries = new
GridEntry
[1];
323
GridEntry
? nextEntry;
338
public AccessibleObject? Previous(
GridEntry
current)
346
GridEntry
? previousEntry = owner.GetGridEntryFromRow(--row);
364
GridEntry
? previousEntry;
411
GridEntry
? gridEntry = owner.SelectedGridEntry;
438
GridEntry
? gridEntry = owner.GetGridEntryFromRow(position.Y);
486
foreach (
var
topLevelGridEntry in topLevelGridEntries)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\SingleSelectRootGridEntry.cs (6)
11
/// Root <see cref="
GridEntry
"/> for the <see cref="PropertyGrid"/> when there is only one object
17
private
GridEntry
? _defaultEntry;
108
internal sealed override
GridEntry
? DefaultChild
250
Dictionary<string, List<
GridEntry
>> categories = [];
251
foreach (
var
child in Children)
265
List<
GridEntry
> categoryGridEntries = [];
System\Windows\Forms\Design\IWindowsFormsEditorService.cs (1)
26
/// <see cref="PropertyGridView.PopupEditor(int)"/> calls <see cref="
GridEntry
.EditPropertyValue(PropertyGridView)"/>
System.Windows.Forms.Interop.Tests (2)
PropertyGridTests.cs (2)
25
var
encodingEntry = entries[0].Children.First(_ => _.PropertyName == "Int_Property");
59
var
encodingEntry = entries[0].Children.First(_ => _.PropertyName == "Int_Property");
System.Windows.Forms.Tests (28)
System\Windows\Forms\AccessibleObjects\CategoryGridEntryAccessibleObjectTests.cs (1)
22
Assert.Null(((IOwnedObject<
GridEntry
>)accessibilityObject).Owner);
System\Windows\Forms\AccessibleObjects\PropertyGrid.PropertyGridAccessibleObjectTests.cs (2)
33
GridEntry
defaultGridEntry = propertyGrid.GetDefaultGridEntry()!;
34
GridEntry
parentGridEntry = defaultGridEntry.ParentGridEntry!; // Category which has item pattern.
System\Windows\Forms\AccessibleObjects\PropertyGridView.PropertyGridViewAccessibleObjectTests.cs (13)
55
GridEntry
entry = propertyGrid.GetCurrentEntries()[0].Children[2];
70
GridEntry
entry = propertyGrid.GetCurrentEntries()[0].Children[2];
92
foreach (
GridEntry
category in propertyGrid.GetCurrentEntries())
96
foreach (
GridEntry
entry in category.Children)
117
Assert.True(accessibleObject.GetChild(0) is
GridEntry
.GridEntryAccessibleObject); // "Accessibility" category entry
118
Assert.True(accessibleObject.GetChild(1) is
GridEntry
.GridEntryAccessibleObject); // "AccessibleDescriptor" entry
119
Assert.True(accessibleObject.GetChild(2) is
GridEntry
.GridEntryAccessibleObject); // "AccessibleName" entry
120
Assert.True(accessibleObject.GetChild(3) is
GridEntry
.GridEntryAccessibleObject); // "AccessibleRole" entry
121
Assert.True(accessibleObject.GetChild(4) is
GridEntry
.GridEntryAccessibleObject); // "Appearance" category entry
174
foreach (
GridEntry
category in propertyGrid.GetCurrentEntries())
181
foreach (
GridEntry
entry in category.Children)
250
foreach (
GridEntry
category in propertyGrid.GetCurrentEntries())
263
foreach (
GridEntry
entry in category.Children)
System\Windows\Forms\MultiPropertyDescriptorGridEntryTests.cs (2)
6
using static System.Windows.Forms.PropertyGridInternal.
GridEntry
;
186
GridEntry
entryParam = new TestGridEntry(propertyGrid);
System\Windows\Forms\PropertyGridInternal\AccessibleObjects\PropertyDescriptorGridEntry.PropertyDescriptorGridEntryAccessibleObjectTests.cs (6)
45
GridEntry
owningGridEntry = ((IOwnedObject<
GridEntry
>)propertyDescriptorGridEntryAccessibleObject).Owner;
130
public TestGridEntry(PropertyGrid ownerGrid,
GridEntry
peParent, PropertyGridView propertyGridView)
173
public TestPropertyDescriptorGridEntry(PropertyGrid ownerGrid,
GridEntry
parent, bool hide)
209
public EnumerablePropertyDescriptorGridEntry(PropertyGrid ownerGrid,
GridEntry
parent, PropertyDescriptor propertyDescriptor, bool hide)
219
public DropDownEditablePropertyDescriptorGridEntry(PropertyGrid ownerGrid,
GridEntry
parent, PropertyDescriptor propertyDescriptor, bool hide)
System\Windows\Forms\PropertyGridInternal\ArrayElementGridEntryTests.cs (1)
10
public TestGridEntry(PropertyGrid ownerGrid,
GridEntry
? parent = null)
System\Windows\Forms\PropertyGridTests.cs (3)
3919
var
entry = (
GridEntry
)propertyGrid.SelectedGridItem;
3974
GridEntry
entry = propertyGridView.SelectedGridEntry;
System.Windows.Forms.TestUtilities (2)
PropertyGridInternal\SubPropertyGrid.cs (2)
22
internal
GridEntry
? SelectedEntry
28
internal
GridEntry
this[string propertyName]
System.Windows.Forms.UI.IntegrationTests (11)
PropertyGridInternal\PropertyDescriptorGridEntry.PropertyDescriptorGridEntryAccessibleObjectTests.cs (9)
22
GridEntry
entry = grid[nameof(Button.Font)];
38
GridEntry
entry = grid[nameof(Button.Font)];
52
GridEntry
entry = grid[nameof(Button.Font)];
100
GridEntry
entry = grid[nameof(Button.Font)];
114
GridEntry
entry = grid[nameof(Button.Font)];
141
GridEntry
entry = grid[nameof(Button.Font)];
157
GridEntry
entry = grid[nameof(Button.Font)];
214
GridEntry
entry = grid[nameof(Button.Font)];
230
GridEntry
entry = grid[nameof(Button.Font)];
PropertyGridViewTests.cs (2)
32
foreach (
GridEntry
entry in entries)
41
foreach (
GridEntry
item in entry.GridItems)