You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
2.7 KiB
XML
43 lines
2.7 KiB
XML
<UserControl x:CompileBindings="False" xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="Sln.Wcs.UI.Views.SystemMonitorView">
|
|
<Grid RowDefinitions="Auto,*" Margin="20,14,20,14" VerticalAlignment="Stretch">
|
|
<!-- Toolbar -->
|
|
<Grid Grid.Row="0" ColumnDefinitions="Auto,*,Auto,Auto" Margin="0,0,0,8">
|
|
<StackPanel Grid.Column="0" Orientation="Horizontal" Spacing="6">
|
|
<Ellipse Width="8" Height="8" Fill="#00E676" VerticalAlignment="Center" />
|
|
<TextBlock Text="系统监控" FontSize="15" FontWeight="SemiBold" Foreground="#DDE4F0" VerticalAlignment="Center" />
|
|
</StackPanel>
|
|
<StackPanel Grid.Column="2" Orientation="Horizontal" Spacing="6" Margin="0,0,10,0">
|
|
<TextBlock Text="{Binding LogCount, StringFormat='共 {0} 条'}" FontSize="12" Foreground="#6B8CB5" VerticalAlignment="Center" />
|
|
</StackPanel>
|
|
<Button Grid.Column="3" Content="清空" Command="{Binding ClearCommand}"
|
|
Background="#0F1F38" Foreground="#8B9BB5" Padding="12,5" FontSize="12" Margin="0,0,6,0" />
|
|
<Button Grid.Column="4" Content="{Binding AutoScroll, StringFormat={}{0} auto?}" Command="{Binding ToggleAutoScrollCommand}"
|
|
Background="#0F1F38" Foreground="#8B9BB5" Padding="12,5" FontSize="12" />
|
|
</Grid>
|
|
|
|
<!-- Log List -->
|
|
<Border Grid.Row="1" Background="#0C1622" CornerRadius="6" BorderBrush="#1A2F4A" BorderThickness="1">
|
|
<ListBox x:Name="LogList" ItemsSource="{Binding Logs}"
|
|
Background="Transparent" Foreground="#BCC8D6" BorderThickness="0"
|
|
>
|
|
<ListBox.ItemTemplate>
|
|
<DataTemplate>
|
|
<Border Padding="10,3" BorderBrush="#1A2F4A" BorderThickness="0,0,0,1">
|
|
<StackPanel Orientation="Horizontal" Spacing="10">
|
|
<TextBlock Text="{Binding TimeText}"
|
|
FontSize="11" Foreground="#4B5E7A" FontFamily="Menlo,Consolas,monospace"
|
|
VerticalAlignment="Center" Width="100" />
|
|
<TextBlock Text="{Binding Message}"
|
|
FontSize="11" Foreground="#8B9BB5" FontFamily="Menlo,Consolas,monospace"
|
|
TextWrapping="Wrap" VerticalAlignment="Center" />
|
|
</StackPanel>
|
|
</Border>
|
|
</DataTemplate>
|
|
</ListBox.ItemTemplate>
|
|
</ListBox>
|
|
</Border>
|
|
</Grid>
|
|
</UserControl>
|