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.
14 lines
911 B
14 lines
911 B
<UserControl x:Class="WhackerLinkConsoleV2.Controls.SystemStatusBox"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Width="200" Height="120" Background="#334455" BorderBrush="Gray" BorderThickness="2">
|
|
<Border Background="{Binding Background, RelativeSource={RelativeSource AncestorType=UserControl}}" CornerRadius="5" Padding="10">
|
|
<StackPanel>
|
|
<TextBlock Text="{Binding SystemName}" FontWeight="Bold" Foreground="White" FontSize="14"/>
|
|
<TextBlock Text="{Binding AddressPort}" Foreground="LightGray" FontSize="12"/>
|
|
<TextBlock Text="Connection State:" Foreground="LightGray" FontSize="12"/>
|
|
<TextBlock Text="{Binding ConnectionState}" Foreground="White" FontSize="12"/>
|
|
</StackPanel>
|
|
</Border>
|
|
</UserControl>
|