<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Style x:Key="MustTextStyle" TargetType="TextBlock">
|
<Setter Property="FontSize" Value="16" />
|
<Setter Property="Foreground" Value="Red" />
|
<Setter Property="Text" Value="*" />
|
<Setter Property="VerticalAlignment" Value="Center" />
|
<Setter Property="HorizontalAlignment" Value="Left" />
|
</Style>
|
|
</ResourceDictionary>
|