Ghost1372

everything can be handy

Label

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.

Example:

1
<Label Content="Label default style" Margin="10"/>

Label.BaseStyle

LabelPrimary : LabelBaseStyle

Primary style:

Example:

1
<Label Content="LabelPrimary style" Margin="10" Style="{DynamicResource LabelPrimary}"/>

Label.PrimaryStyle

LabelSuccess : LabelBaseStyle

Success type style

Example:

1
<Label Content="LabelSuccess style" Margin="10" Style="{DynamicResource LabelSuccess}"/>

Label.SuccessStyle

LabelInfo : LabelBaseStyle

Information type style

Example:

1
<Label Content="LabelInfo style" Margin="10" Style="{DynamicResource LabelInfo}"/>

Label.InfoStyle

LabelWarning : LabelBaseStyle

Warning type style

Example:

1
<Label Content="LabelWarning style" Margin="10" Style="{DynamicResource LabelWarning}"/>

Label.WarningStyle

LabelDanger : LabelBaseStyle

Danger type style

Example:

1
<Label Content="LabelDanger style" Margin="10" Style="{DynamicResource LabelDanger}"/>

Label.DangerStyle

0%