<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="NewLife.Studio.App.Controls.StatusBar"
Height="24">
<Border Background="#007ACC" Padding="8,2">
<StackPanel Orientation="Horizontal" Spacing="16">
<TextBlock x:Name="ConnectionText" Foreground="White" FontSize="12" VerticalAlignment="Center" />
<TextBlock x:Name="ModuleText" Foreground="White" FontSize="12" VerticalAlignment="Center" />
<TextBlock x:Name="TaskText" Foreground="White" FontSize="12" VerticalAlignment="Center" />
</StackPanel>
</Border>
</UserControl>
|