Enum ContainerContentMode
How a composite container presents its children's visibility.
Namespace: Serenity.Ui.Domain.Types
Assembly: Serenity.Ui.Domain.dll
Syntax
public enum ContainerContentMode
Fields
| Name | Description |
|---|---|
| STACK | All children are shown together and laid out by the container (the normal case — e.g. a row of panels or a column of sections). |
| SWITCHER | Only one child is visible at a time (a "router outlet" / tab content area). The visible child is the active one; activating another hides its siblings. This is what a navigation rail drives: selecting a nav entry activates the matching child here. |