增加监控界面
This commit is contained in:
@@ -17,6 +17,7 @@
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="50" />
|
||||
<RowDefinition />
|
||||
<RowDefinition Height="32" />
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<md:ColorZone md:ElevationAssist.Elevation="Dp2" Mode="PrimaryDark">
|
||||
@@ -160,5 +161,74 @@
|
||||
x:Name="MainViewContentControl"
|
||||
prism:RegionManager.RegionName="MainViewContentRegion"
|
||||
Visibility="Collapsed" />
|
||||
|
||||
<Grid Grid.Row="2" Margin="4">
|
||||
<Grid.Resources>
|
||||
<Style x:Key="BoardStyle" TargetType="Border">
|
||||
<Setter Property="Background" Value="AliceBlue" />
|
||||
<Setter Property="Margin" Value="3,0" />
|
||||
<Setter Property="CornerRadius" Value="3" />
|
||||
</Style>
|
||||
</Grid.Resources>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition />
|
||||
<ColumnDefinition />
|
||||
<ColumnDefinition />
|
||||
<ColumnDefinition />
|
||||
<ColumnDefinition />
|
||||
<ColumnDefinition />
|
||||
<ColumnDefinition />
|
||||
<ColumnDefinition />
|
||||
</Grid.ColumnDefinitions>
|
||||
<Border Style="{StaticResource BoardStyle}">
|
||||
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal">
|
||||
<TextBlock FontSize="20" Text="PLC通信:" />
|
||||
<TextBlock FontSize="20" Text="正常" />
|
||||
</StackPanel>
|
||||
</Border>
|
||||
<Border Grid.Column="1" Style="{StaticResource BoardStyle}">
|
||||
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal">
|
||||
<TextBlock FontSize="20" Text="仪表通信:" />
|
||||
<TextBlock FontSize="20" Text="正常" />
|
||||
</StackPanel>
|
||||
</Border>
|
||||
<Border Grid.Column="2" Style="{StaticResource BoardStyle}">
|
||||
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal">
|
||||
<TextBlock FontSize="20" Text="服务器通信:" />
|
||||
<TextBlock FontSize="20" Text="正常" />
|
||||
</StackPanel>
|
||||
</Border>
|
||||
<Border Grid.Column="3" Style="{StaticResource BoardStyle}">
|
||||
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal">
|
||||
<TextBlock FontSize="20" Text="用户登录:" />
|
||||
<TextBlock FontSize="20" Text="Admin" />
|
||||
</StackPanel>
|
||||
</Border>
|
||||
<Border Grid.Column="4" Style="{StaticResource BoardStyle}">
|
||||
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal">
|
||||
<TextBlock FontSize="20" Text="记录仪通信:" />
|
||||
<TextBlock FontSize="20" Text="正常" />
|
||||
</StackPanel>
|
||||
</Border>
|
||||
<Border Grid.Column="5" Style="{StaticResource BoardStyle}">
|
||||
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal">
|
||||
<TextBlock FontSize="20" Text="高速记录:" />
|
||||
<TextBlock FontSize="20" Text="正常" />
|
||||
</StackPanel>
|
||||
</Border>
|
||||
<Border Grid.Column="6" Style="{StaticResource BoardStyle}">
|
||||
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal">
|
||||
<TextBlock FontSize="20" Text="数据记录:" />
|
||||
<TextBlock FontSize="20" Text="正常" />
|
||||
</StackPanel>
|
||||
</Border>
|
||||
<Border Grid.Column="7" Style="{StaticResource BoardStyle}">
|
||||
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal">
|
||||
<TextBlock FontSize="20" Text="系统状态:" />
|
||||
<TextBlock FontSize="20" Text="正常" />
|
||||
</StackPanel>
|
||||
|
||||
</Border>
|
||||
</Grid>
|
||||
</Grid>
|
||||
</Window>
|
||||
|
||||
Reference in New Issue
Block a user