Styles
| Name |
|---|
| LabelDefault |
| LabelDefault.Small |
| LabelPrimary |
| LabelPrimary.Small |
| LabelSuccess |
| LabelSuccess.Small |
| LabelInfo |
| LabelInfo.Small |
| LabelWarning |
| LabelWarning.Small |
| LabelDanger |
| LabelDanger.Small |
LabelBaseStyle
The default style of the Label. which is not recommended. It should always be used by other styles based on On.
NOTE
Example:
<Label Content="Label default style" Margin="10"/>
LabelPrimary : LabelBaseStyle
Primary style:
NOTE
Example:
<Label Content="LabelPrimary style" Margin="10" Style="{DynamicResource LabelPrimary}"/>
LabelSuccess : LabelBaseStyle
Success type style
NOTE
Example:
<Label Content="LabelSuccess style" Margin="10" Style="{DynamicResource LabelSuccess}"/>
LabelInfo : LabelBaseStyle
Information type style
NOTE
Example:
<Label Content="LabelInfo style" Margin="10" Style="{DynamicResource LabelInfo}"/>
LabelWarning : LabelBaseStyle
Warning type style
NOTE
Example:
<Label Content="LabelWarning style" Margin="10" Style="{DynamicResource LabelWarning}"/>
LabelDanger : LabelBaseStyle
Danger type style
NOTE
Example:
<Label Content="LabelDanger style" Margin="10" Style="{DynamicResource LabelDanger}"/>