API-referenca za navigaciju i Wizard-kontrole.
Tab-bazirana navigacija.
WvdS.UI.Controls.Navigation
<TabControl SelectedIndex="{Binding ActiveTab}"> <TabItem Header="General"> <GeneralSettings /> </TabItem> <TabItem Header="Advanced"> <AdvancedSettings /> </TabItem> </TabControl>
| Property | Tip | Default | Opis |
| Items | TWvdSTabItemCollection | nil | Tab-stavke |
|---|---|---|---|
| SelectedIndex | Integer | 0 | Aktivni tab-indeks |
| SelectedItem | TWvdSTabItem | nil | Aktivna tab-stavka |
| TabStripPlacement | TWvdSPlacement | pTop | Top, Bottom, Left, Right |
| IsClosable | Boolean | False | Tabovi zatvorivi |
| Event | Signatura | Opis |
| OnSelectionChanged | TSelectionChangedEvent | Tab promijenjen |
|---|---|---|
| OnTabClosing | TTabClosingEvent | Tab se zatvara |
TWvdSTabItem = class(TWvdSContentControl) property Header: string; property Content: TWvdSFrameworkElement; property IsEnabled: Boolean; property Icon: TWvdSImageSource; end;
Sklopivi paneli.
WvdS.UI.Controls.Navigation
<Accordion ExpandMode="Single"> <AccordionItem Header="Section 1" IsExpanded="True"> <ContentPanel1 /> </AccordionItem> <AccordionItem Header="Section 2"> <ContentPanel2 /> </AccordionItem> </Accordion>
| Property | Tip | Default | Opis |
| Items | TWvdSAccordionItemCollection | nil | Accordion-stavke |
|---|---|---|---|
| ExpandMode | TWvdSExpandMode | emSingle | Single, Multiple |
| SelectedItem | TWvdSAccordionItem | nil | Aktivna stavka |
| Property | Tip | Opis |
| Header | string | Naslov |
|---|---|---|
| Content | TWvdSFrameworkElement | Sadržaj |
| IsExpanded | Boolean | Prošireno |
| Icon | TWvdSImageSource | Ikona |
Breadcrumb-navigacija.
WvdS.UI.Controls.Navigation
<Breadcrumb Path="{Binding CurrentPath}" Separator=">" OnPathChanged="OnNavigate" />
| Property | Tip | Default | Opis |
| 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 | Tip | Default | Opis |
| Groups | TWvdSTileGroupCollection | nil | Grupe pločica |
|---|---|---|---|
| ItemSize | TWvdSTileSize | tsNormal | Zadana veličina |
| Orientation | TWvdSOrientation | oHorizontal | Raspored |
| Property | Tip | Opis |
| Caption | string | Naslov |
|---|---|---|
| Icon | TWvdSImageSource | Ikona |
| Size | TWvdSTileSize | Small, Normal, Wide, Large |
| Background | TWvdSBrush | Pozadina |
| Command | IWvdSCommand | Click-Command |
| Badge | string | Badge-tekst |