Gets the default style provider for this container.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public DefaultStyleProvider Styles { get; }
Public ReadOnly Property Styles As DefaultStyleProvider
Get
member Styles : DefaultStyleProvider with get
Property Value
Type:
DefaultStyleProviderThe default style provider for this container.
Remarks
Use this to apply styles to any child controls of this container.
By default, styles will apply to all children, including children of children unless
Inherit is set to
false.
Typically, you would set Inherit to false when creating composite controls
that already have all their styles applied and you don't want any other styles
to be inherited.
See Also