18 references to ParentInternal
System.Windows.Forms (18)
System\Windows\Forms\Controls\TrackBar\TrackBar.TrackBarChildAccessibleObject.cs (6)
31return ParentInternal?.SystemIAccessible.TryGetLocation(GetChildId()) ?? Rectangle.Empty; 40=> ParentInternal is { } parent ? parent.SystemIAccessible.TryGetHelp(GetChildId()) : default; 43=> ParentInternal?.SystemIAccessible.TryGetRole(GetChildId()) ?? AccessibleRole.None; 46=> ParentInternal?.SystemIAccessible.TryGetState(GetChildId()) ?? AccessibleStates.None; 48internal override IRawElementProviderFragmentRoot.Interface? FragmentRoot => ParentInternal; 68NavigateDirection.NavigateDirection_Parent => ParentInternal,
System\Windows\Forms\Controls\TrackBar\TrackBar.TrackBarFirstButtonAccessibleObject.cs (4)
21public override string? Name => !this.TryGetOwnerAs(out TrackBar? owner) || ParentInternal is not { } parent 34|| ParentInternal is not { } parent 57NavigateDirection.NavigateDirection_NextSibling => IsDisplayed ? ParentInternal?.ThumbAccessibleObject : null, 70ParentInternal?.SystemIAccessible.TryDoDefaultAction(GetChildId());
System\Windows\Forms\Controls\TrackBar\TrackBar.TrackBarLastButtonAccessibleObject.cs (4)
21public override string? Name => !this.TryGetOwnerAs(out TrackBar? owner) || ParentInternal is not { } parent 39|| ParentInternal is not { } parent 65NavigateDirection.NavigateDirection_PreviousSibling => IsDisplayed ? ParentInternal?.ThumbAccessibleObject : null, 79ParentInternal?.SystemIAccessible.TryDoDefaultAction(GetChildId());
System\Windows\Forms\Controls\TrackBar\TrackBar.TrackBarThumbAccessibleObject.cs (4)
32=> ParentInternal?.FirstButtonAccessibleObject?.IsDisplayed ?? false 33? ParentInternal.FirstButtonAccessibleObject 36=> ParentInternal?.LastButtonAccessibleObject?.IsDisplayed ?? false 37? ParentInternal.LastButtonAccessibleObject