L2Bot2.0/Client/Application/Components/StatsBar.xaml
2023-01-31 20:18:10 +04:00

24 lines
1.2 KiB
XML

<UserControl x:Class="Client.Application.Components.StatsBar"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Client.Application.Components"
x:Name="root"
mc:Ignorable="d">
<Grid>
<Image Stretch="Fill" Source="{Binding BackgroundSource,ElementName=root,Mode=OneWay}" />
<Image Stretch="Fill" Source="{Binding ForegroundSource,ElementName=root,Mode=OneWay}" Width="{Binding ForegroundWidth,ElementName=root,Mode=OneWay}" HorizontalAlignment="Left" />
<Grid HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock Text="{Binding Text,ElementName=root,Mode=OneWay}" Foreground="Black">
<TextBlock.Effect>
<BlurEffect
Radius="1.0"
KernelType="Box"/>
</TextBlock.Effect>
</TextBlock>
<TextBlock Text="{Binding Text,ElementName=root,Mode=OneWay}" Foreground="White" />
</Grid>
</Grid>
</UserControl>