|
|
@@ -228,237 +228,252 @@
|
|
|
</StackPanel>
|
|
|
</TabItem.Header>
|
|
|
|
|
|
- <Grid>
|
|
|
+ <Grid Margin="16">
|
|
|
<Grid.RowDefinitions>
|
|
|
- <RowDefinition Height="auto" />
|
|
|
- <RowDefinition Height="auto" />
|
|
|
+ <RowDefinition Height="50" />
|
|
|
+ <RowDefinition Height="*" />
|
|
|
</Grid.RowDefinitions>
|
|
|
- <Grid Margin="16">
|
|
|
- <Grid.RowDefinitions>
|
|
|
- <RowDefinition Height="Auto" />
|
|
|
- <RowDefinition Height="Auto" />
|
|
|
- <RowDefinition Height="Auto" />
|
|
|
- <RowDefinition Height="Auto" />
|
|
|
- <RowDefinition Height="Auto" />
|
|
|
- <RowDefinition Height="Auto" />
|
|
|
- <RowDefinition Height="Auto" />
|
|
|
- <RowDefinition Height="Auto" />
|
|
|
- </Grid.RowDefinitions>
|
|
|
- <Grid.ColumnDefinitions>
|
|
|
- <ColumnDefinition Width="auto" />
|
|
|
- <ColumnDefinition Width="*" />
|
|
|
- </Grid.ColumnDefinitions>
|
|
|
-
|
|
|
-
|
|
|
- <TextBlock Grid.Row="0"
|
|
|
- Grid.Column="0"
|
|
|
- Text="Url:"
|
|
|
- HorizontalAlignment="Right"
|
|
|
- VerticalAlignment="Center" />
|
|
|
- <TextBox Grid.Row="0"
|
|
|
- Grid.Column="1"
|
|
|
- Text="{Binding DeviceInfo.MesUrl, Mode=TwoWay}"
|
|
|
- Margin="6" />
|
|
|
-
|
|
|
- <TextBlock Grid.Row="1"
|
|
|
- Grid.Column="0"
|
|
|
- Text="Line:"
|
|
|
- HorizontalAlignment="Right"
|
|
|
- VerticalAlignment="Center" />
|
|
|
- <TextBox Grid.Row="1"
|
|
|
- Grid.Column="1"
|
|
|
- Text="{Binding DeviceInfo.Line, Mode=TwoWay}"
|
|
|
- Margin="6" />
|
|
|
-
|
|
|
- <TextBlock Grid.Row="2"
|
|
|
- Grid.Column="0"
|
|
|
- Text="Station:"
|
|
|
- HorizontalAlignment="Right"
|
|
|
- VerticalAlignment="Center" />
|
|
|
- <TextBox Grid.Row="2"
|
|
|
- Grid.Column="1"
|
|
|
- Text="{Binding DeviceInfo.Station, Mode=TwoWay}"
|
|
|
- Margin="6" />
|
|
|
-
|
|
|
- <TextBlock Grid.Row="3"
|
|
|
- Grid.Column="0"
|
|
|
- Text="FixtureId:"
|
|
|
- HorizontalAlignment="Right"
|
|
|
- VerticalAlignment="Center" />
|
|
|
- <TextBox Grid.Row="3"
|
|
|
- Grid.Column="1"
|
|
|
- Text="{Binding DeviceInfo.FixtureId, Mode=TwoWay}"
|
|
|
- Margin="6" />
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition Width="auto" />
|
|
|
+ <ColumnDefinition Width="*" />
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
|
|
|
- <TextBlock Grid.Row="4"
|
|
|
- Grid.Column="0"
|
|
|
- Text="f:"
|
|
|
- HorizontalAlignment="Right"
|
|
|
- VerticalAlignment="Center" />
|
|
|
- <TextBox Grid.Row="4"
|
|
|
- Grid.Column="1"
|
|
|
- Text="{Binding DeviceInfo.F, Mode=TwoWay}"
|
|
|
- Margin="6" />
|
|
|
+ <!--增删改查按钮-->
|
|
|
+ <StackPanel Grid.ColumnSpan="2"
|
|
|
+ IsEnabled="{Binding IsAllowEdit}"
|
|
|
+ Orientation="Horizontal">
|
|
|
+ <Button Style="{StaticResource MaterialDesignFloatingActionMiniLightButton}"
|
|
|
+ ToolTip="添加设备"
|
|
|
+ Command="{Binding AddDeviceInfoCommand}">
|
|
|
+ <materialDesign:PackIcon Kind="Plus" />
|
|
|
+ </Button>
|
|
|
+ <Button Style="{StaticResource MaterialDesignFloatingActionMiniDarkButton}"
|
|
|
+ ToolTip="删除设备"
|
|
|
+ Margin="20,0"
|
|
|
+ Command="{Binding RemoveDeviceInfoCommand}">
|
|
|
+ <materialDesign:PackIcon Kind="DeleteForeverOutline" />
|
|
|
+ </Button>
|
|
|
+ <Button Style="{StaticResource MaterialDesignFloatingActionMiniSecondaryDarkButton}"
|
|
|
+ ToolTip="{lex:Loc 保存}"
|
|
|
+ Command="{Binding SaveDeviceInfoCommand}">
|
|
|
+ <materialDesign:PackIcon Kind="ContentSaveCheck" />
|
|
|
+ </Button>
|
|
|
+ </StackPanel>
|
|
|
|
|
|
- <TextBlock Grid.Row="5"
|
|
|
- Grid.Column="0"
|
|
|
- Text="comp:"
|
|
|
- HorizontalAlignment="Right"
|
|
|
- VerticalAlignment="Center" />
|
|
|
- <TextBox Grid.Row="5"
|
|
|
- Grid.Column="1"
|
|
|
- Text="{Binding DeviceInfo.comp, Mode=TwoWay}"
|
|
|
- Margin="6" />
|
|
|
+ <!--设备列表-->
|
|
|
+ <TreeView Grid.Row="1"
|
|
|
+ Grid.Column="0"
|
|
|
+ SelectedItemChanged="TreeView_SelectedItemChanged">
|
|
|
+ <TreeViewItem Header="设备列表"
|
|
|
+ FontSize="{DynamicResource Font.Size.Title4}"
|
|
|
+ FontWeight="Bold"
|
|
|
+ IsExpanded="True"
|
|
|
+ ItemsSource="{Binding DeviceInfoList}">
|
|
|
+ <TreeViewItem.ItemTemplate>
|
|
|
+ <HierarchicalDataTemplate>
|
|
|
+ <StackPanel Orientation="Vertical">
|
|
|
+ <TextBlock FontSize="{DynamicResource Font.Size.Title4}">
|
|
|
+ <TextBlock.Text>
|
|
|
+ <MultiBinding StringFormat="设备 {0}">
|
|
|
+ <Binding Path="DeviceNo" />
|
|
|
+ </MultiBinding>
|
|
|
+ </TextBlock.Text>
|
|
|
+ </TextBlock>
|
|
|
+ <StackPanel Orientation="Horizontal">
|
|
|
+ <TextBlock Text="Line: "
|
|
|
+ Style="{StaticResource MaterialDesignCaptionTextBlock}"
|
|
|
+ FontSize="{DynamicResource Font.Size.Body3}" />
|
|
|
+ <TextBlock Text="{Binding Line}"
|
|
|
+ Style="{StaticResource MaterialDesignCaptionTextBlock}"
|
|
|
+ FontSize="{DynamicResource Font.Size.Body3}" />
|
|
|
+ </StackPanel>
|
|
|
+ <StackPanel Orientation="Horizontal">
|
|
|
+ <TextBlock Text="Station: "
|
|
|
+ Style="{StaticResource MaterialDesignCaptionTextBlock}"
|
|
|
+ FontSize="{DynamicResource Font.Size.Body3}" />
|
|
|
+ <TextBlock Text="{Binding Station}"
|
|
|
+ Style="{StaticResource MaterialDesignCaptionTextBlock}"
|
|
|
+ FontSize="{DynamicResource Font.Size.Body3}" />
|
|
|
+ </StackPanel>
|
|
|
+ <Border Height="2"
|
|
|
+ Margin="0"
|
|
|
+ BorderThickness="2"
|
|
|
+ BorderBrush="Green" />
|
|
|
+ </StackPanel>
|
|
|
+ </HierarchicalDataTemplate>
|
|
|
+ </TreeViewItem.ItemTemplate>
|
|
|
+ </TreeViewItem>
|
|
|
+ </TreeView>
|
|
|
|
|
|
- <TextBlock Grid.Row="6"
|
|
|
- Grid.Column="0"
|
|
|
- Text="{lex:Loc 启用MES}"
|
|
|
- HorizontalAlignment="Right"
|
|
|
- VerticalAlignment="Center" />
|
|
|
- <CheckBox Grid.Row="6"
|
|
|
+ <!--参数详情-->
|
|
|
+ <ScrollViewer Grid.Row="1"
|
|
|
Grid.Column="1"
|
|
|
- IsChecked="{Binding DeviceInfo.EnableMES, Mode=TwoWay}"
|
|
|
- Margin="6" />
|
|
|
-
|
|
|
- <StackPanel Orientation="Horizontal"
|
|
|
- HorizontalAlignment="Right"
|
|
|
- Grid.Row="7"
|
|
|
- Grid.ColumnSpan="2"
|
|
|
- Margin="6">
|
|
|
- <Button Style="{StaticResource MaterialDesignRaisedButton}"
|
|
|
- Command="{Binding SaveDeviceInfoCommand}">保存</Button>
|
|
|
- </StackPanel>
|
|
|
- </Grid>
|
|
|
+ IsEnabled="{Binding IsAllowEdit}"
|
|
|
+ Margin="20"
|
|
|
+ Visibility="{Binding SelectDeviceInfo,Converter={StaticResource ObjectToVisibilityConverter}}">
|
|
|
+ <Grid>
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="auto" />
|
|
|
+ <RowDefinition Height="auto" />
|
|
|
+ </Grid.RowDefinitions>
|
|
|
|
|
|
- <!--<Grid Margin="16"
|
|
|
-Grid.Row="1">
|
|
|
- <Grid.RowDefinitions>
|
|
|
- <RowDefinition Height="Auto" />
|
|
|
- <RowDefinition Height="Auto" />
|
|
|
- <RowDefinition Height="Auto" />
|
|
|
- <RowDefinition Height="Auto" />
|
|
|
- <RowDefinition Height="Auto" />
|
|
|
- <RowDefinition Height="Auto" />
|
|
|
- <RowDefinition Height="Auto" />
|
|
|
- <RowDefinition Height="Auto" />
|
|
|
- <RowDefinition Height="Auto" />
|
|
|
- <RowDefinition Height="Auto" />
|
|
|
- <RowDefinition Height="Auto" />
|
|
|
- </Grid.RowDefinitions>
|
|
|
- <Grid.ColumnDefinitions>
|
|
|
- <ColumnDefinition Width="auto" />
|
|
|
- <ColumnDefinition Width="*" />
|
|
|
- </Grid.ColumnDefinitions>
|
|
|
-
|
|
|
- <TextBlock Grid.Row="0"
|
|
|
- Grid.Column="0"
|
|
|
- Text="PROCESS_NAME:"
|
|
|
- HorizontalAlignment="Right"
|
|
|
- VerticalAlignment="Center" />
|
|
|
- <TextBox Grid.Row="0"
|
|
|
- Grid.Column="1"
|
|
|
- Text="{Binding DataInfo.PROCESS_NAME, Mode=TwoWay}"
|
|
|
- Margin="6" />
|
|
|
-
|
|
|
- <TextBlock Grid.Row="1"
|
|
|
- Grid.Column="0"
|
|
|
- Text="CTQ_LSL(压力下限):"
|
|
|
- HorizontalAlignment="Right"
|
|
|
- VerticalAlignment="Center" />
|
|
|
- <TextBox Grid.Row="1"
|
|
|
- Grid.Column="1"
|
|
|
- Text="{Binding DataInfo.CTQ_LSL_Pressure, Mode=TwoWay}"
|
|
|
- Margin="6" />
|
|
|
-
|
|
|
- <TextBlock Grid.Row="2"
|
|
|
- Grid.Column="0"
|
|
|
- Text="CTQ_USL(压力上限):"
|
|
|
- HorizontalAlignment="Right"
|
|
|
- VerticalAlignment="Center" />
|
|
|
- <TextBox Grid.Row="2"
|
|
|
- Grid.Column="1"
|
|
|
- Text="{Binding DataInfo.CTQ_USL_Pressure, Mode=TwoWay}"
|
|
|
- Margin="6" />
|
|
|
-
|
|
|
- <TextBlock Grid.Row="3"
|
|
|
- Grid.Column="0"
|
|
|
- Text="SUPPLIER_NAME:"
|
|
|
- HorizontalAlignment="Right"
|
|
|
- VerticalAlignment="Center" />
|
|
|
- <TextBox Grid.Row="3"
|
|
|
- Grid.Column="1"
|
|
|
- Text="{Binding DataInfo.SUPPLIER_NAME, Mode=TwoWay}"
|
|
|
- Margin="6" />
|
|
|
-
|
|
|
- <TextBlock Grid.Row="4"
|
|
|
- Grid.Column="0"
|
|
|
- Text="COMMODITY_TYPE:"
|
|
|
- HorizontalAlignment="Right"
|
|
|
- VerticalAlignment="Center" />
|
|
|
- <TextBox Grid.Row="4"
|
|
|
- Grid.Column="1"
|
|
|
- Text="{Binding DataInfo.COMMODITY_TYPE, Mode=TwoWay}"
|
|
|
- Margin="6" />
|
|
|
-
|
|
|
- <TextBlock Grid.Row="5"
|
|
|
- Grid.Column="0"
|
|
|
- Text="REVISION:"
|
|
|
- HorizontalAlignment="Right"
|
|
|
- VerticalAlignment="Center" />
|
|
|
- <TextBox Grid.Row="5"
|
|
|
- Grid.Column="1"
|
|
|
- Text="{Binding DataInfo.REVISION, Mode=TwoWay}"
|
|
|
- Margin="6" />
|
|
|
-
|
|
|
- <TextBlock Grid.Row="6"
|
|
|
- Grid.Column="0"
|
|
|
- Text="WO#:"
|
|
|
- HorizontalAlignment="Right"
|
|
|
- VerticalAlignment="Center" />
|
|
|
- <TextBox Grid.Row="6"
|
|
|
- Grid.Column="1"
|
|
|
- Text="{Binding DataInfo.WO, Mode=TwoWay}"
|
|
|
- Margin="6" />
|
|
|
-
|
|
|
- <TextBlock Grid.Row="7"
|
|
|
- Grid.Column="0"
|
|
|
- Text="MFG_LOT#:"
|
|
|
- HorizontalAlignment="Right"
|
|
|
- VerticalAlignment="Center" />
|
|
|
- <TextBox Grid.Row="7"
|
|
|
- Grid.Column="1"
|
|
|
- Text="{Binding DataInfo.MFG_LOT, Mode=TwoWay}"
|
|
|
- Margin="6" />
|
|
|
-
|
|
|
- <TextBlock Grid.Row="8"
|
|
|
- Grid.Column="0"
|
|
|
- Text="MFG_ASSY_LINE:"
|
|
|
- HorizontalAlignment="Right"
|
|
|
- VerticalAlignment="Center" />
|
|
|
- <TextBox Grid.Row="8"
|
|
|
- Grid.Column="1"
|
|
|
- Text="{Binding DataInfo.MFG_ASSY_LINE, Mode=TwoWay}"
|
|
|
- Margin="6" />
|
|
|
-
|
|
|
- <TextBlock Grid.Row="9"
|
|
|
- Grid.Column="0"
|
|
|
- Text="PROCESS_MACHINE_ID:"
|
|
|
- HorizontalAlignment="Right"
|
|
|
- VerticalAlignment="Center" />
|
|
|
- <TextBox Grid.Row="9"
|
|
|
- Grid.Column="1"
|
|
|
- Text="{Binding DataInfo.PROCESS_MACHINE_ID, Mode=TwoWay}"
|
|
|
- Margin="6" />
|
|
|
-
|
|
|
- <StackPanel Orientation="Horizontal"
|
|
|
- HorizontalAlignment="Right"
|
|
|
- Grid.Row="10"
|
|
|
- Grid.ColumnSpan="2"
|
|
|
- Margin="6">
|
|
|
- <Button Style="{StaticResource MaterialDesignRaisedButton}"
|
|
|
- Command="{Binding SaveDataInfoCommand}">保存</Button>
|
|
|
- </StackPanel>
|
|
|
- </Grid>-->
|
|
|
+ <!--设备信息表单-->
|
|
|
+ <Grid>
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="Auto" />
|
|
|
+ <RowDefinition Height="Auto" />
|
|
|
+ <RowDefinition Height="Auto" />
|
|
|
+ <RowDefinition Height="Auto" />
|
|
|
+ <RowDefinition Height="Auto" />
|
|
|
+ <RowDefinition Height="Auto" />
|
|
|
+ <RowDefinition Height="Auto" />
|
|
|
+ <RowDefinition Height="Auto" />
|
|
|
+ <RowDefinition Height="Auto" />
|
|
|
+ <RowDefinition Height="Auto" />
|
|
|
+ <RowDefinition Height="Auto" />
|
|
|
+ <RowDefinition Height="Auto" />
|
|
|
+ <RowDefinition Height="Auto" />
|
|
|
+ <RowDefinition Height="Auto" />
|
|
|
+ </Grid.RowDefinitions>
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition Width="auto" />
|
|
|
+ <ColumnDefinition Width="*" />
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
+
|
|
|
+ <TextBlock Grid.Row="0"
|
|
|
+ Grid.Column="0"
|
|
|
+ Text="设备编号:"
|
|
|
+ HorizontalAlignment="Right"
|
|
|
+ VerticalAlignment="Center" />
|
|
|
+ <TextBlock Grid.Row="0"
|
|
|
+ Grid.Column="1"
|
|
|
+ Text="{Binding SelectDeviceInfo.DeviceNo}"
|
|
|
+ Margin="6,2"
|
|
|
+ VerticalAlignment="Center" />
|
|
|
+
|
|
|
+ <TextBlock Grid.Row="1"
|
|
|
+ Grid.Column="0"
|
|
|
+ Text="设备名称:"
|
|
|
+ HorizontalAlignment="Right"
|
|
|
+ VerticalAlignment="Center" />
|
|
|
+ <TextBox Grid.Row="1"
|
|
|
+ Grid.Column="1"
|
|
|
+ Text="{Binding SelectDeviceInfo.DeviceName, Mode=TwoWay}"
|
|
|
+ Margin="6,2" />
|
|
|
+
|
|
|
+ <TextBlock Grid.Row="2"
|
|
|
+ Grid.Column="0"
|
|
|
+ Text="设备描述:"
|
|
|
+ HorizontalAlignment="Right"
|
|
|
+ VerticalAlignment="Center" />
|
|
|
+ <TextBox Grid.Row="2"
|
|
|
+ Grid.Column="1"
|
|
|
+ Text="{Binding SelectDeviceInfo.DeviceDesc, Mode=TwoWay}"
|
|
|
+ Margin="6,2" />
|
|
|
+
|
|
|
+ <TextBlock Grid.Row="3"
|
|
|
+ Grid.Column="0"
|
|
|
+ Text="Url:"
|
|
|
+ HorizontalAlignment="Right"
|
|
|
+ VerticalAlignment="Center" />
|
|
|
+ <TextBox Grid.Row="3"
|
|
|
+ Grid.Column="1"
|
|
|
+ Text="{Binding SelectDeviceInfo.MesUrl, Mode=TwoWay}"
|
|
|
+ Margin="6,2" />
|
|
|
+
|
|
|
+ <TextBlock Grid.Row="4"
|
|
|
+ Grid.Column="0"
|
|
|
+ Text="Line:"
|
|
|
+ HorizontalAlignment="Right"
|
|
|
+ VerticalAlignment="Center" />
|
|
|
+ <TextBox Grid.Row="4"
|
|
|
+ Grid.Column="1"
|
|
|
+ Text="{Binding SelectDeviceInfo.Line, Mode=TwoWay}"
|
|
|
+ Margin="6,2" />
|
|
|
+
|
|
|
+ <TextBlock Grid.Row="5"
|
|
|
+ Grid.Column="0"
|
|
|
+ Text="Station:"
|
|
|
+ HorizontalAlignment="Right"
|
|
|
+ VerticalAlignment="Center" />
|
|
|
+ <TextBox Grid.Row="5"
|
|
|
+ Grid.Column="1"
|
|
|
+ Text="{Binding SelectDeviceInfo.Station, Mode=TwoWay}"
|
|
|
+ Margin="6,2" />
|
|
|
+
|
|
|
+ <TextBlock Grid.Row="6"
|
|
|
+ Grid.Column="0"
|
|
|
+ Text="FixtureId:"
|
|
|
+ HorizontalAlignment="Right"
|
|
|
+ VerticalAlignment="Center" />
|
|
|
+ <TextBox Grid.Row="6"
|
|
|
+ Grid.Column="1"
|
|
|
+ Text="{Binding SelectDeviceInfo.FixtureId, Mode=TwoWay}"
|
|
|
+ Margin="6,2" />
|
|
|
+
|
|
|
+ <TextBlock Grid.Row="7"
|
|
|
+ Grid.Column="0"
|
|
|
+ Text="f:"
|
|
|
+ HorizontalAlignment="Right"
|
|
|
+ VerticalAlignment="Center" />
|
|
|
+ <TextBox Grid.Row="7"
|
|
|
+ Grid.Column="1"
|
|
|
+ Text="{Binding SelectDeviceInfo.F, Mode=TwoWay}"
|
|
|
+ Margin="6,2" />
|
|
|
+
|
|
|
+ <TextBlock Grid.Row="8"
|
|
|
+ Grid.Column="0"
|
|
|
+ Text="comp:"
|
|
|
+ HorizontalAlignment="Right"
|
|
|
+ VerticalAlignment="Center" />
|
|
|
+ <TextBox Grid.Row="8"
|
|
|
+ Grid.Column="1"
|
|
|
+ Text="{Binding SelectDeviceInfo.comp, Mode=TwoWay}"
|
|
|
+ Margin="6,2" />
|
|
|
+
|
|
|
+ <TextBlock Grid.Row="9"
|
|
|
+ Grid.Column="0"
|
|
|
+ Text="启用 MES:"
|
|
|
+ HorizontalAlignment="Right"
|
|
|
+ VerticalAlignment="Center" />
|
|
|
+ <CheckBox Grid.Row="9"
|
|
|
+ Grid.Column="1"
|
|
|
+ IsChecked="{Binding SelectDeviceInfo.EnableMES, Mode=TwoWay}"
|
|
|
+ Margin="6,2" />
|
|
|
+ <CheckBox Grid.Row="10"
|
|
|
+ Grid.Column="1"
|
|
|
+ Content="是否启用两次产品编号"
|
|
|
+ IsChecked="{Binding SelectDeviceInfo.EnableDoubleMes, Mode=TwoWay}"
|
|
|
+ Margin="6,2" />
|
|
|
+ <CheckBox Grid.Row="11"
|
|
|
+ Grid.Column="1"
|
|
|
+ Content="是否保存CSV文件"
|
|
|
+ IsChecked="{Binding SelectDeviceInfo.SaveCsv, Mode=TwoWay}"
|
|
|
+ Margin="6,2" />
|
|
|
+ <TextBlock Grid.Row="12"
|
|
|
+ Grid.Column="0"
|
|
|
+ Text="保存的CSV文件路径:"
|
|
|
+ HorizontalAlignment="Right"
|
|
|
+ VerticalAlignment="Center" />
|
|
|
+ <DockPanel HorizontalAlignment="Stretch"
|
|
|
+ Grid.Row="12"
|
|
|
+ Grid.Column="1"
|
|
|
+ Margin="6,2">
|
|
|
+ <Button DockPanel.Dock="Right"
|
|
|
+ HorizontalAlignment="Right"
|
|
|
+ ToolTip="{lex:Loc 选择路径}"
|
|
|
+ Command="{Binding SelectSaveImagePathCommand}">
|
|
|
+ <Button.Content>
|
|
|
+ <materialDesign:PackIcon Kind="FolderOpenOutline" />
|
|
|
+ </Button.Content>
|
|
|
+ </Button>
|
|
|
+ <TextBox Text="{Binding SelectDeviceInfo.SaveCsvPath, Mode=TwoWay}" />
|
|
|
+
|
|
|
+ </DockPanel>
|
|
|
+
|
|
|
+ </Grid>
|
|
|
+ </Grid>
|
|
|
+ </ScrollViewer>
|
|
|
</Grid>
|
|
|
</TabItem>
|
|
|
|