|
|
|
|
@ -45,20 +45,21 @@
|
|
|
|
|
helper:DataGridAutoPageSizeBehavior.Pager="{Binding TanksPager}"
|
|
|
|
|
helper:DataGridAutoPageSizeBehavior.Suspend="{Binding IsOpenMode}"
|
|
|
|
|
helper:DataGridAutoPageSizeBehavior.ThrottleMs="120"
|
|
|
|
|
Grid.Row="1" Margin="15 0"
|
|
|
|
|
Grid.Row="1" Margin="0"
|
|
|
|
|
ColumnWidth="*" RowHeight="30"
|
|
|
|
|
Background="Transparent"
|
|
|
|
|
HorizontalAlignment="Stretch">
|
|
|
|
|
<DataGrid.Columns>
|
|
|
|
|
<!-- 측정 시각 -->
|
|
|
|
|
<DataGridTextColumn
|
|
|
|
|
Header="시간" Width="90"
|
|
|
|
|
Header="시간" Width="84.8"
|
|
|
|
|
Binding="{Binding RecordedTime, StringFormat=\{0:HH:mm:ss\}}"
|
|
|
|
|
ElementStyle="{StaticResource DataGridElmenetStyle}"/>
|
|
|
|
|
|
|
|
|
|
<!-- Tank 값들 -->
|
|
|
|
|
<DataGridTextColumn Header="번호" Binding="{Binding Tanks[0].Number}"
|
|
|
|
|
ElementStyle="{StaticResource DataGridElmenetStyle}"/>
|
|
|
|
|
ElementStyle="{StaticResource DataGridElmenetStyle}"
|
|
|
|
|
CellStyle="{StaticResource HighlightLeftBorderCellStyle}"
|
|
|
|
|
HeaderStyle="{StaticResource HighlightLeftBorderHeaderStyle}"/>
|
|
|
|
|
<DataGridTextColumn Binding="{Binding Tanks[0].DOValue, StringFormat=\{0:F2\}}"
|
|
|
|
|
ElementStyle="{StaticResource DataGridElmenetStyle}">
|
|
|
|
|
<DataGridTextColumn.Header>
|
|
|
|
|
@ -98,10 +99,10 @@
|
|
|
|
|
</DataGridTextColumn.Header>
|
|
|
|
|
</DataGridTextColumn>
|
|
|
|
|
|
|
|
|
|
<DataGridTextColumn Width="5"/>
|
|
|
|
|
|
|
|
|
|
<DataGridTextColumn Header="번호" Binding="{Binding Tanks[1].Number}"
|
|
|
|
|
ElementStyle="{StaticResource DataGridElmenetStyle}"/>
|
|
|
|
|
ElementStyle="{StaticResource DataGridElmenetStyle}"
|
|
|
|
|
CellStyle="{StaticResource HighlightLeftBorderCellStyle}"
|
|
|
|
|
HeaderStyle="{StaticResource HighlightLeftBorderHeaderStyle}"/>
|
|
|
|
|
<DataGridTextColumn Binding="{Binding Tanks[1].DOValue, StringFormat=\{0:F2\}}"
|
|
|
|
|
ElementStyle="{StaticResource DataGridElmenetStyle}">
|
|
|
|
|
<DataGridTextColumn.Header>
|
|
|
|
|
@ -140,10 +141,11 @@
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</DataGridTextColumn.Header>
|
|
|
|
|
</DataGridTextColumn>
|
|
|
|
|
<DataGridTextColumn Width="5"/>
|
|
|
|
|
|
|
|
|
|
<DataGridTextColumn Header="번호" Binding="{Binding Tanks[2].Number}"
|
|
|
|
|
ElementStyle="{StaticResource DataGridElmenetStyle}"/>
|
|
|
|
|
ElementStyle="{StaticResource DataGridElmenetStyle}"
|
|
|
|
|
CellStyle="{StaticResource HighlightLeftBorderCellStyle}"
|
|
|
|
|
HeaderStyle="{StaticResource HighlightLeftBorderHeaderStyle}"/>
|
|
|
|
|
<DataGridTextColumn Binding="{Binding Tanks[2].DOValue, StringFormat=\{0:F2\}}"
|
|
|
|
|
ElementStyle="{StaticResource DataGridElmenetStyle}">
|
|
|
|
|
<DataGridTextColumn.Header>
|
|
|
|
|
@ -202,7 +204,9 @@
|
|
|
|
|
ElementStyle="{StaticResource DataGridElmenetStyle}"/>
|
|
|
|
|
|
|
|
|
|
<DataGridTextColumn Binding="{Binding Filtering.SandFilterPower, Converter={StaticResource BoolToPowerConverter}}"
|
|
|
|
|
ElementStyle="{StaticResource DataGridElmenetStyle}">
|
|
|
|
|
ElementStyle="{StaticResource DataGridElmenetStyle}"
|
|
|
|
|
CellStyle="{StaticResource HighlightLeftBorderCellStyle}"
|
|
|
|
|
HeaderStyle="{StaticResource HighlightLeftBorderHeaderStyle}">
|
|
|
|
|
<DataGridTextColumn.Header>
|
|
|
|
|
<StackPanel>
|
|
|
|
|
<TextBlock Text="모래여과기" HorizontalAlignment="Center"/>
|
|
|
|
|
@ -330,7 +334,9 @@
|
|
|
|
|
ElementStyle="{StaticResource DataGridElmenetStyle}"/>
|
|
|
|
|
|
|
|
|
|
<DataGridTextColumn Header="오존 발생기 전원" Binding="{Binding Sterilizing.OzoneGeneratorPower, Converter={StaticResource BoolToPowerConverter}}"
|
|
|
|
|
ElementStyle="{StaticResource DataGridElmenetStyle}"/>
|
|
|
|
|
ElementStyle="{StaticResource DataGridElmenetStyle}"
|
|
|
|
|
CellStyle="{StaticResource HighlightLeftBorderCellStyle}"
|
|
|
|
|
HeaderStyle="{StaticResource HighlightLeftBorderHeaderStyle}"/>
|
|
|
|
|
<DataGridTextColumn Header="자외선 살균기 ID" Binding="{Binding Sterilizing.UVSterilizerId}"
|
|
|
|
|
ElementStyle="{StaticResource DataGridElmenetStyle}"/>
|
|
|
|
|
<DataGridTextColumn Header="자외선 살균기 전원" Binding="{Binding Sterilizing.UVSterilizerPower, Converter={StaticResource BoolToPowerConverter}}"
|
|
|
|
|
|