update message view with textblock to wrap text
This commit is contained in:
parent
165ddb4990
commit
9bcbb42f83
@ -4,42 +4,47 @@
|
||||
<Design.PreviewWith>
|
||||
<Border Padding="20" Background="{StaticResource AKI_Background_Light}">
|
||||
<!-- Add Controls for Previewer Here -->
|
||||
<StackPanel Background="{StaticResource AKI_Background_Light}" Spacing="15" Margin="10">
|
||||
<cc:TitleBar Title="Title Bar Text"/>
|
||||
<Label Content="Normal label"/>
|
||||
<Label Content="Yellow label" Classes="yellow"/>
|
||||
<Label Content="Blue label" Classes="dark"/>
|
||||
<ProgressBar Value="40"/>
|
||||
<Separator Height="1"/>
|
||||
<ProgressBar Value="60" Classes="done"/>
|
||||
</StackPanel>
|
||||
<StackPanel Background="{StaticResource AKI_Background_Light}" Spacing="15" Margin="10">
|
||||
<cc:TitleBar Title="Title Bar Text"/>
|
||||
<Label Content="Normal label"/>
|
||||
<Label Content="Yellow label" Classes="yellow"/>
|
||||
<TextBlock Text="Yellow textblock" Classes="yellow"/>
|
||||
<Label Content="Blue label" Classes="dark"/>
|
||||
<ProgressBar Value="40"/>
|
||||
<Separator Height="1"/>
|
||||
<ProgressBar Value="60" Classes="done"/>
|
||||
</StackPanel>
|
||||
</Border>
|
||||
</Design.PreviewWith>
|
||||
|
||||
<!-- Add Styles Here -->
|
||||
|
||||
|
||||
<Style Selector="cc|TitleBar">
|
||||
<Setter Property="Background" Value="{StaticResource AKI_Background_Dark}"/>
|
||||
<Setter Property="Foreground" Value="{StaticResource AKI_Foreground_Light}"/>
|
||||
<Setter Property="XButtonForeground" Value="{StaticResource AKI_Brush_DarkGrayBlue}"/>
|
||||
<Setter Property="XButtonForeground" Value="{StaticResource AKI_Brush_DarkGrayBlue}"/>
|
||||
</Style>
|
||||
|
||||
<Style Selector="TextBlock.yellow">
|
||||
<Setter Property="Foreground" Value="{StaticResource AKI_Brush_Yellow}"/>
|
||||
</Style>
|
||||
|
||||
<Style Selector="Label">
|
||||
<Setter Property="Foreground" Value="{StaticResource AKI_Foreground_Light}"/>
|
||||
</Style>
|
||||
|
||||
<Style Selector="Label">
|
||||
<Setter Property="Foreground" Value="{StaticResource AKI_Foreground_Light}"/>
|
||||
</Style>
|
||||
|
||||
<Style Selector="Label.yellow">
|
||||
<Setter Property="Foreground" Value="{StaticResource AKI_Brush_Yellow}"/>
|
||||
</Style>
|
||||
|
||||
<Style Selector="Label.dark">
|
||||
<Setter Property="Foreground" Value="DimGray"/>
|
||||
</Style>
|
||||
<Style Selector="Label.dark">
|
||||
<Setter Property="Foreground" Value="DimGray"/>
|
||||
</Style>
|
||||
|
||||
<Style Selector="ProgressBar">
|
||||
<Setter Property="Foreground" Value="{StaticResource AKI_Brush_Yellow}"/>
|
||||
</Style>
|
||||
|
||||
<Style Selector="ProgressBar">
|
||||
<Setter Property="Foreground" Value="{StaticResource AKI_Brush_Yellow}"/>
|
||||
</Style>
|
||||
|
||||
<Style Selector="ProgressBar.done">
|
||||
<Setter Property="Foreground" Value="Green"/>
|
||||
<Setter Property="Transitions">
|
||||
@ -65,7 +70,7 @@
|
||||
</Style.Animations>
|
||||
</Style>
|
||||
|
||||
<Style Selector="Separator">
|
||||
<Setter Property="Background" Value="{StaticResource AKI_Background_Dark}"/>
|
||||
</Style>
|
||||
<Style Selector="Separator">
|
||||
<Setter Property="Background" Value="{StaticResource AKI_Background_Dark}"/>
|
||||
</Style>
|
||||
</Styles>
|
||||
|
@ -11,10 +11,11 @@
|
||||
|
||||
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
|
||||
<Label Content="You can close this window"
|
||||
FontSize="12" FontWeight="SemiBold"/>
|
||||
<Label Content="{Binding InfoText}"
|
||||
Classes="yellow"
|
||||
FontSize="12" FontWeight="SemiBold"
|
||||
/>
|
||||
<TextBlock Text="{Binding InfoText}" TextWrapping="Wrap"
|
||||
Classes="yellow"
|
||||
/>
|
||||
</StackPanel>
|
||||
|
||||
</UserControl>
|
||||
|
Loading…
x
Reference in New Issue
Block a user