67 lines
2.3 KiB
Plaintext
67 lines
2.3 KiB
Plaintext
|
|
<UserControl
|
||
|
|
x:Class="SHH.CameraDashboard.BottomDockControl"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:local="clr-namespace:SHH.CameraDashboard.Controls">
|
||
|
|
|
||
|
|
<Grid VerticalAlignment="Bottom">
|
||
|
|
<Grid.RowDefinitions>
|
||
|
|
<RowDefinition Height="Auto" />
|
||
|
|
<RowDefinition Height="30" />
|
||
|
|
</Grid.RowDefinitions>
|
||
|
|
|
||
|
|
<Border
|
||
|
|
x:Name="ExpandedPanel"
|
||
|
|
Grid.Row="0"
|
||
|
|
Height="250"
|
||
|
|
Background="{DynamicResource Brush.Bg.Panel}"
|
||
|
|
BorderBrush="{DynamicResource Brush.Border}"
|
||
|
|
BorderThickness="0,1,0,0"
|
||
|
|
Visibility="Collapsed">
|
||
|
|
<local:DiagnosticControl x:Name="WebApiDiag" />
|
||
|
|
</Border>
|
||
|
|
|
||
|
|
<Border
|
||
|
|
Grid.Row="1"
|
||
|
|
Background="{DynamicResource Brush.Brand}"
|
||
|
|
BorderBrush="{DynamicResource Brush.Border}"
|
||
|
|
BorderThickness="0,1,0,0"
|
||
|
|
Cursor="Hand"
|
||
|
|
MouseLeftButtonDown="TogglePanel_Click">
|
||
|
|
<DockPanel Margin="10,0" LastChildFill="False">
|
||
|
|
<TextBlock
|
||
|
|
x:Name="LatestLogText"
|
||
|
|
VerticalAlignment="Center"
|
||
|
|
FontSize="11"
|
||
|
|
Foreground="White"
|
||
|
|
Text="准备就绪" />
|
||
|
|
|
||
|
|
<TextBlock
|
||
|
|
x:Name="ArrowIcon"
|
||
|
|
Margin="10,0,0,0"
|
||
|
|
VerticalAlignment="Center"
|
||
|
|
DockPanel.Dock="Right"
|
||
|
|
Foreground="White"
|
||
|
|
Text="▲" />
|
||
|
|
|
||
|
|
<StackPanel
|
||
|
|
VerticalAlignment="Center"
|
||
|
|
DockPanel.Dock="Right"
|
||
|
|
Orientation="Horizontal">
|
||
|
|
<TextBlock
|
||
|
|
Margin="0,0,5,0"
|
||
|
|
FontSize="10"
|
||
|
|
Foreground="#EEE"
|
||
|
|
Opacity="0.7"
|
||
|
|
Text="API Latency:" />
|
||
|
|
<TextBlock
|
||
|
|
x:Name="LatencyText"
|
||
|
|
FontSize="10"
|
||
|
|
FontWeight="Bold"
|
||
|
|
Foreground="White"
|
||
|
|
Text="0ms" />
|
||
|
|
</StackPanel>
|
||
|
|
</DockPanel>
|
||
|
|
</Border>
|
||
|
|
</Grid>
|
||
|
|
</UserControl>
|