ControlVisualParent Property |
Gets the visual container of this control, if any.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public Container VisualParent { get; }
Public ReadOnly Property VisualParent As Container
Get
member VisualParent : Container with get
Property Value
Type:
ContainerThe visual parent of this control.
Remarks
Some containers may use other Eto controls to layout its children, such as the
StackLayout.
This will return the parent control that visually contains this control as opposed to
Parent
which will return the logical parent.
See Also