Interface IUIWrap
A component that stacks child elements horizontally and stack them into multiple lines if there's not enough space to keep everything on a single line.
Inherited Members
Namespace: DevToys.Api
Assembly: DevToys.Api.dll
Syntax
public interface IUIWrap : IUIElementWithChildren, IUIElement
Properties
Children
Gets the list of child elements.
Declaration
IUIElement[]? Children { get; }
Property Value
Type | Description |
---|---|
IUIElement[] |
Spacing
Gets a value that indicates the space between stacked elements. Default is Small.
Declaration
UISpacing Spacing { get; }
Property Value
Type | Description |
---|---|
UISpacing |
Events
ChildrenChanged
Raised when Children is changed.
Declaration
event EventHandler? ChildrenChanged
Event Type
Type | Description |
---|---|
EventHandler |
SpacingChanged
Raised when Spacing is changed.
Declaration
event EventHandler? SpacingChanged
Event Type
Type | Description |
---|---|
EventHandler |