Add Phoenix remote desktop, action connector, documentation engine, and gamification support. Refactor support-case processing and search/action UI, and update installer assets and dependencies.
75 lines
3.1 KiB
XML
75 lines
3.1 KiB
XML
<UserControl x:Class="FasdDesktopUi.Basics.UserControls.Gamification.LevelTracker"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:FasdDesktopUi.Basics.UserControls.Gamification"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="800">
|
|
|
|
<UserControl.Resources>
|
|
<Style TargetType="TextBlock">
|
|
<Setter Property="Foreground"
|
|
Value="{DynamicResource FontColor.DetailsPage.DataHistory.TitleColumn.MainTitle}" />
|
|
</Style>
|
|
</UserControl.Resources>
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
<Grid Margin="10 0">
|
|
<Border BorderBrush="{DynamicResource Color.FunctionMarker}"
|
|
CornerRadius="50"
|
|
BorderThickness="6"
|
|
HorizontalAlignment="Stretch"
|
|
VerticalAlignment="Stretch"
|
|
Background="#01010101"
|
|
Height="45"
|
|
Width="45">
|
|
</Border>
|
|
|
|
<TextBlock x:Name="LevelValueTextBlock"
|
|
TextAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
FontWeight="Bold"
|
|
FontSize="20" />
|
|
|
|
<Ellipse x:Name="CoverEllipse"
|
|
Stroke="{DynamicResource Color.AppBackground}"
|
|
Opacity="0.5"
|
|
StrokeThickness="7"
|
|
Height="46"
|
|
Width="46"
|
|
RenderTransformOrigin="0.5,0.5">
|
|
<Ellipse.RenderTransform>
|
|
<RotateTransform Angle="-90" />
|
|
</Ellipse.RenderTransform>
|
|
</Ellipse>
|
|
</Grid>
|
|
|
|
<StackPanel VerticalAlignment="Center">
|
|
<StackPanel.Resources>
|
|
<Style TargetType="StackPanel">
|
|
<Setter Property="Visibility"
|
|
Value="Collapsed" />
|
|
<Style.Triggers>
|
|
<DataTrigger Binding="{Binding RelativeSource={RelativeSource AncestorLevel=1, AncestorType=FrameworkElement}, Path=IsMouseOver}"
|
|
Value="True">
|
|
<Setter Property="Visibility"
|
|
Value="Visible" />
|
|
</DataTrigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
</StackPanel.Resources>
|
|
|
|
<TextBlock x:Name="LevelTitelTextBlock"
|
|
FontWeight="Bold"
|
|
FontSize="18" />
|
|
<TextBlock x:Name="XpTextBlock"
|
|
FontWeight="Light"
|
|
FontSize="14" />
|
|
</StackPanel>
|
|
</StackPanel>
|
|
|
|
</UserControl>
|