You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
755 B
11 lines
755 B
<UserControl x:Class="DVMConsole.Controls.SystemStatusBox"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Width="105" Height="55" Background="#FF0B004B" BorderBrush="Gray" BorderThickness="1">
|
|
<Border Background="{Binding Background, RelativeSource={RelativeSource AncestorType=UserControl}}" CornerRadius="5" Padding="10" BorderThickness="1,1,1,1">
|
|
<StackPanel Margin="-3,-1,-4,1">
|
|
<TextBlock Text="{Binding SystemName}" FontWeight="Bold" Foreground="White" FontSize="12"/>
|
|
<TextBlock Text="{Binding ConnectionState}" Foreground="Gold" FontSize="10"/>
|
|
</StackPanel>
|
|
</Border>
|
|
</UserControl> |