2024-03-13 03:18:31 +00:00
|
|
|
<UserControl x:Class="InSituLaboratory.Views.Pages.CavityOperationView"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:local="clr-namespace:InSituLaboratory.Views.Pages"
|
|
|
|
|
mc:Ignorable="d" Template="{StaticResource PageSearchTempalte}"
|
|
|
|
|
>
|
|
|
|
|
<Grid Grid.IsSharedSizeScope="True" Margin="0,5,0,10">
|
2024-03-14 01:24:31 +00:00
|
|
|
<ScrollViewer ScrollViewer.HorizontalScrollBarVisibility="Auto" ScrollViewer.VerticalScrollBarVisibility="Auto" >
|
|
|
|
|
<DataGrid ItemsSource="{Binding}" FontSize="12" FontWeight="Bold" Foreground="#666" >
|
|
|
|
|
<DataGrid.Columns>
|
|
|
|
|
<DataGridTextColumn Header="序号" Width="40"/>
|
|
|
|
|
<DataGridTextColumn Header="记录时间" Width="120"/>
|
|
|
|
|
<DataGridTextColumn Header="腔体识别码" Width="70"/>
|
|
|
|
|
<DataGridTextColumn Header="DN1-48V电压" Width="120"/>
|
|
|
|
|
<DataGridTextColumn Header="DN1-48V电流" Width="120"/>
|
|
|
|
|
<DataGridTextColumn Header="DN1-24V电流" Width="120"/>
|
|
|
|
|
<DataGridTextColumn Header="DN2-48V电流" Width="120" />
|
|
|
|
|
<DataGridTextColumn Header="DN2-24V电流" Width="120"/>
|
|
|
|
|
<DataGridTextColumn Header="DN3-48V电流" Width="120"/>
|
|
|
|
|
<DataGridTextColumn Header="DN3-24V电流" Width="120"/>
|
|
|
|
|
<DataGridTextColumn Header="DN4-48V电流" Width="120"/>
|
|
|
|
|
<DataGridTextColumn Header="DN4-24V电流" Width="120"/>
|
|
|
|
|
<DataGridTextColumn Header="漏电流模块1" Width="120"/>
|
|
|
|
|
<DataGridTextColumn Header="漏电流模块2" Width="120"/>
|
|
|
|
|
<DataGridTextColumn Header="漏电流模块4" Width="120"/>
|
2024-03-13 03:18:31 +00:00
|
|
|
|
2024-03-14 01:24:31 +00:00
|
|
|
</DataGrid.Columns>
|
|
|
|
|
</DataGrid>
|
|
|
|
|
</ScrollViewer>
|
2024-03-13 03:18:31 +00:00
|
|
|
</Grid>
|
|
|
|
|
</UserControl>
|