API Reference for navigation and wizard controls.
Tab-based navigation.
WvdS.UI.Controls.Navigation
<TabControl SelectedIndex="{Binding ActiveTab}"> <TabItem Header="General"> <GeneralSettings /> </TabItem> <TabItem Header="Advanced"> <AdvancedSettings /> </TabItem> </TabControl>
| Property | Type | Default | Description |
| Items | TWvdSTabItemCollection | nil | Tab items |
|---|---|---|---|
| SelectedIndex | Integer | 0 | Active tab index |
| SelectedItem | TWvdSTabItem | nil | Active tab item |
| TabStripPlacement | TWvdSPlacement | pTop | Top, Bottom, Left, Right |
| IsClosable | Boolean | False | Tabs closable |
| Event | Signature | Description |
| OnSelectionChanged | TSelectionChangedEvent | Tab changed |
|---|---|---|
| OnTabClosing | TTabClosingEvent | Tab is closing |
TWvdSTabItem = class(TWvdSContentControl) property Header: string; property Content: TWvdSFrameworkElement; property IsEnabled: Boolean; property Icon: TWvdSImageSource; end;
Collapsible panels.
WvdS.UI.Controls.Navigation
<Accordion ExpandMode="Single"> <AccordionItem Header="Section 1" IsExpanded="True"> <ContentPanel1 /> </AccordionItem> <AccordionItem Header="Section 2"> <ContentPanel2 /> </AccordionItem> </Accordion>
| Property | Type | Default | Description |
| Items | TWvdSAccordionItemCollection | nil | Accordion items |
|---|---|---|---|
| ExpandMode | TWvdSExpandMode | emSingle | Single, Multiple |
| SelectedItem | TWvdSAccordionItem | nil | Active item |
| Property | Type | Description |
| Header | string | Header text |
|---|---|---|
| Content | TWvdSFrameworkElement | Content |
| IsExpanded | Boolean | Expanded |
| Icon | TWvdSImageSource | Icon |
Breadcrumb navigation.
WvdS.UI.Controls.Navigation
<Breadcrumb Path="{Binding CurrentPath}" Separator=">" OnPathChanged="OnNavigate" />
| Property | Type | Default | Description |
| Path | string |
|---|
<TileControl> <TileGroup Header="Applications"> <Tile Caption="Mail" Icon="mail" Size="Large" Background="Blue" Command="{Binding OpenMail}" /> <Tile Caption="Calendar" Icon="calendar" Size="Normal" /> <Tile Caption="Tasks" Icon="check" Size="Small" /> </TileGroup> </TileControl>
| Property | Type | Default | Description |
| Groups | TWvdSTileGroupCollection | nil | Tile groups |
|---|---|---|---|
| ItemSize | TWvdSTileSize | tsNormal | Default size |
| Orientation | TWvdSOrientation | oHorizontal | Arrangement |
| Property | Type | Description |
| Caption | string | Title |
|---|---|---|
| Icon | TWvdSImageSource | Icon |
| Size | TWvdSTileSize | Small, Normal, Wide, Large |
| Background | TWvdSBrush | Background |
| Command | IWvdSCommand | Click command |
| Badge | string | Badge text |