update message view with textblock to wrap text
This commit is contained in:
parent
165ddb4990
commit
9bcbb42f83
@ -8,6 +8,7 @@
|
|||||||
<cc:TitleBar Title="Title Bar Text"/>
|
<cc:TitleBar Title="Title Bar Text"/>
|
||||||
<Label Content="Normal label"/>
|
<Label Content="Normal label"/>
|
||||||
<Label Content="Yellow label" Classes="yellow"/>
|
<Label Content="Yellow label" Classes="yellow"/>
|
||||||
|
<TextBlock Text="Yellow textblock" Classes="yellow"/>
|
||||||
<Label Content="Blue label" Classes="dark"/>
|
<Label Content="Blue label" Classes="dark"/>
|
||||||
<ProgressBar Value="40"/>
|
<ProgressBar Value="40"/>
|
||||||
<Separator Height="1"/>
|
<Separator Height="1"/>
|
||||||
@ -24,6 +25,10 @@
|
|||||||
<Setter Property="XButtonForeground" Value="{StaticResource AKI_Brush_DarkGrayBlue}"/>
|
<Setter Property="XButtonForeground" Value="{StaticResource AKI_Brush_DarkGrayBlue}"/>
|
||||||
</Style>
|
</Style>
|
||||||
|
|
||||||
|
<Style Selector="TextBlock.yellow">
|
||||||
|
<Setter Property="Foreground" Value="{StaticResource AKI_Brush_Yellow}"/>
|
||||||
|
</Style>
|
||||||
|
|
||||||
<Style Selector="Label">
|
<Style Selector="Label">
|
||||||
<Setter Property="Foreground" Value="{StaticResource AKI_Foreground_Light}"/>
|
<Setter Property="Foreground" Value="{StaticResource AKI_Foreground_Light}"/>
|
||||||
</Style>
|
</Style>
|
||||||
|
@ -11,8 +11,9 @@
|
|||||||
|
|
||||||
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
|
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
|
||||||
<Label Content="You can close this window"
|
<Label Content="You can close this window"
|
||||||
FontSize="12" FontWeight="SemiBold"/>
|
FontSize="12" FontWeight="SemiBold"
|
||||||
<Label Content="{Binding InfoText}"
|
/>
|
||||||
|
<TextBlock Text="{Binding InfoText}" TextWrapping="Wrap"
|
||||||
Classes="yellow"
|
Classes="yellow"
|
||||||
/>
|
/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user