-
Panel
A wrapper to structure your layouts. Example <Panel Weight="1" Orientation="Horizontal"> <Panel Weight="0.5" Orientation="Vertical"> [...] </Panel> <Panel Weight="0.5" Orientation="Vertical"> [...] </Panel> </Panel>
-
StackLayout
Contains several items that are stacked on top of each other. This allows the top visible stack item to overlap with the other ones underneath it. Example <StackLayout> <StackItem> <Image Name="Background" ScaleType="CenterCrop" IMAGE_POST_PROCESS="TRUE"/> </StackItem> <StackItem> <Panel BackgroundColor="#66000000"/>…
-
StackItem
Displays a text that can be formatted with attributes. Example <StackItem> <Panel BackgroundColor="#77000000"/> </StackItem> Attributes Style
-
Wildcard
This widget allows you to dynamically integrate different part templates inside your layout model. It enables you to display a cart or shelf for graphical representation in a picking workflow. Example Defining a part template <PartTemplate Name="CartInsertPick"> <Panel Orientation="Vertical" Weight="1"> <Panel…