|
@@ -1,5 +1,5 @@
|
1
|
1
|
<Window
|
2
|
|
- x:Class="XHWK.WKTool.XHMicroLessonSystemWindow"
|
|
2
|
+ x:Class="XHWK.WKTool.MainWindow"
|
3
|
3
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
4
|
4
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
5
|
5
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
@@ -8,7 +8,6 @@
|
8
|
8
|
Width="950"
|
9
|
9
|
Height="700"
|
10
|
10
|
AllowsTransparency="False"
|
11
|
|
-
|
12
|
11
|
BorderBrush="#eee"
|
13
|
12
|
BorderThickness="1"
|
14
|
13
|
Loaded="Window_Loaded"
|
|
@@ -220,7 +219,6 @@
|
220
|
219
|
</Style>
|
221
|
220
|
</Window.Resources>
|
222
|
221
|
|
223
|
|
-
|
224
|
222
|
<Grid>
|
225
|
223
|
<!-- 内容区 上:标题栏 下:工具栏和录制区域 -->
|
226
|
224
|
<Grid
|
|
@@ -398,7 +396,6 @@
|
398
|
396
|
Cursor="Hand"
|
399
|
397
|
FontSize="14"
|
400
|
398
|
Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" />
|
401
|
|
-
|
402
|
399
|
</Grid>
|
403
|
400
|
<!-- 测试 -->
|
404
|
401
|
<Grid Grid.Column="2" Visibility="Collapsed">
|
|
@@ -879,7 +876,6 @@
|
879
|
876
|
<ScaleTransform ScaleX="-1" />
|
880
|
877
|
</Image.RenderTransform>
|
881
|
878
|
</Image>
|
882
|
|
-
|
883
|
879
|
</Grid>
|
884
|
880
|
</Border>
|
885
|
881
|
</Grid>
|
|
@@ -891,290 +887,291 @@
|
891
|
887
|
Background="#FFFFFFFF"
|
892
|
888
|
Visibility="Visible">
|
893
|
889
|
<Grid.ColumnDefinitions>
|
894
|
|
- <ColumnDefinition Width="200"></ColumnDefinition>
|
895
|
|
- <ColumnDefinition Width="*"></ColumnDefinition>
|
896
|
|
- <ColumnDefinition Width="200"></ColumnDefinition>
|
897
|
|
-
|
|
890
|
+ <ColumnDefinition Width="200" />
|
|
891
|
+ <ColumnDefinition Width="*" />
|
|
892
|
+ <ColumnDefinition Width="200" />
|
898
|
893
|
</Grid.ColumnDefinitions>
|
899
|
894
|
<!-- 页码 -->
|
900
|
895
|
<Grid
|
901
|
|
- x:Name="GridPage"
|
902
|
|
- Grid.Column="0"
|
903
|
|
- Grid.Row="0"
|
904
|
|
- HorizontalAlignment="Left"
|
905
|
|
- VerticalAlignment="Center"
|
906
|
|
- MouseLeftButtonDown="Window_MouseLeftButtonDown_1"
|
907
|
|
- Visibility="Collapsed">
|
|
896
|
+ x:Name="GridPage"
|
|
897
|
+ Grid.Row="0"
|
|
898
|
+ Grid.Column="0"
|
|
899
|
+ HorizontalAlignment="Left"
|
|
900
|
+ VerticalAlignment="Center"
|
|
901
|
+ MouseLeftButtonDown="Window_MouseLeftButtonDown_1"
|
|
902
|
+ Visibility="Collapsed">
|
908
|
903
|
<StackPanel
|
909
|
|
- Grid.Row="0"
|
910
|
|
- Grid.Column="1"
|
911
|
|
- Height="30"
|
912
|
|
- Margin="0,0,0,0"
|
913
|
|
- HorizontalAlignment="Center"
|
914
|
|
- VerticalAlignment="Bottom"
|
915
|
|
- Background="Transparent"
|
916
|
|
- Orientation="Horizontal">
|
|
904
|
+ Grid.Row="0"
|
|
905
|
+ Grid.Column="1"
|
|
906
|
+ Height="30"
|
|
907
|
+ Margin="0,0,0,0"
|
|
908
|
+ HorizontalAlignment="Center"
|
|
909
|
+ VerticalAlignment="Bottom"
|
|
910
|
+ Background="Transparent"
|
|
911
|
+ Orientation="Horizontal">
|
917
|
912
|
|
918
|
|
- <Label Margin="5,0,0,0" Content="页码:" VerticalAlignment="Center" ></Label>
|
|
913
|
+ <Label
|
|
914
|
+ Margin="5,0,0,0"
|
|
915
|
+ VerticalAlignment="Center"
|
|
916
|
+ Content="页码:" />
|
919
|
917
|
|
920
|
918
|
<Button
|
921
|
|
- x:Name="last_button"
|
922
|
|
- Width="28"
|
923
|
|
- Height="20"
|
924
|
|
- Click="last_button_Click"
|
925
|
|
- Cursor="Hand"
|
926
|
|
- Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}">
|
|
919
|
+ x:Name="last_button"
|
|
920
|
+ Width="28"
|
|
921
|
+ Height="20"
|
|
922
|
+ Click="last_button_Click"
|
|
923
|
+ Cursor="Hand"
|
|
924
|
+ Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}">
|
927
|
925
|
<StackPanel>
|
928
|
926
|
<Image
|
929
|
|
- Width="16"
|
930
|
|
- Height="12"
|
931
|
|
- Source=".\Images\class_p1.png" />
|
|
927
|
+ Width="16"
|
|
928
|
+ Height="12"
|
|
929
|
+ Source=".\Images\class_p1.png" />
|
932
|
930
|
</StackPanel>
|
933
|
931
|
</Button>
|
934
|
932
|
<Grid
|
935
|
|
- Width="60"
|
936
|
|
- Background="Transparent"
|
937
|
|
- MouseLeftButtonDown="Window_MouseLeftButtonDown_1">
|
|
933
|
+ Width="60"
|
|
934
|
+ Background="Transparent"
|
|
935
|
+ MouseLeftButtonDown="Window_MouseLeftButtonDown_1">
|
938
|
936
|
<StackPanel
|
939
|
|
- HorizontalAlignment="Center"
|
940
|
|
- Background="Transparent"
|
941
|
|
- Orientation="Horizontal">
|
|
937
|
+ HorizontalAlignment="Center"
|
|
938
|
+ Background="Transparent"
|
|
939
|
+ Orientation="Horizontal">
|
942
|
940
|
<TextBlock
|
943
|
|
- x:Name="txbCurrpage"
|
944
|
|
- Margin="0"
|
945
|
|
- HorizontalAlignment="Center"
|
946
|
|
- VerticalAlignment="Center"
|
947
|
|
- FontSize="14"
|
948
|
|
- Text="{Binding currpage}"
|
949
|
|
- TextAlignment="Center" />
|
|
941
|
+ x:Name="txbCurrpage"
|
|
942
|
+ Margin="0"
|
|
943
|
+ HorizontalAlignment="Center"
|
|
944
|
+ VerticalAlignment="Center"
|
|
945
|
+ FontSize="14"
|
|
946
|
+ Text="{Binding currpage}"
|
|
947
|
+ TextAlignment="Center" />
|
950
|
948
|
<TextBlock
|
951
|
|
- HorizontalAlignment="Center"
|
952
|
|
- VerticalAlignment="Center"
|
953
|
|
- FontSize="14"
|
954
|
|
- Text="/"
|
955
|
|
- TextAlignment="Center" />
|
|
949
|
+ HorizontalAlignment="Center"
|
|
950
|
+ VerticalAlignment="Center"
|
|
951
|
+ FontSize="14"
|
|
952
|
+ Text="/"
|
|
953
|
+ TextAlignment="Center" />
|
956
|
954
|
<TextBlock
|
957
|
|
- x:Name="txbTotalpage"
|
958
|
|
- HorizontalAlignment="Center"
|
959
|
|
- VerticalAlignment="Center"
|
960
|
|
- FontSize="14"
|
961
|
|
- Text="{Binding pagenum}"
|
962
|
|
- TextAlignment="Center" />
|
|
955
|
+ x:Name="txbTotalpage"
|
|
956
|
+ HorizontalAlignment="Center"
|
|
957
|
+ VerticalAlignment="Center"
|
|
958
|
+ FontSize="14"
|
|
959
|
+ Text="{Binding pagenum}"
|
|
960
|
+ TextAlignment="Center" />
|
963
|
961
|
</StackPanel>
|
964
|
962
|
</Grid>
|
965
|
963
|
<Button
|
966
|
|
- x:Name="next_btn"
|
967
|
|
- Width="28"
|
968
|
|
- Height="20"
|
969
|
|
- Background="Transparent"
|
970
|
|
- Click="next_btn_Click"
|
971
|
|
- Cursor="Hand"
|
972
|
|
- Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}">
|
|
964
|
+ x:Name="next_btn"
|
|
965
|
+ Width="28"
|
|
966
|
+ Height="20"
|
|
967
|
+ Background="Transparent"
|
|
968
|
+ Click="next_btn_Click"
|
|
969
|
+ Cursor="Hand"
|
|
970
|
+ Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}">
|
973
|
971
|
<StackPanel>
|
974
|
972
|
<Image
|
975
|
|
- Width="16"
|
976
|
|
- Height="12"
|
977
|
|
- Source=".\Images\class_p2.png" />
|
|
973
|
+ Width="16"
|
|
974
|
+ Height="12"
|
|
975
|
+ Source=".\Images\class_p2.png" />
|
978
|
976
|
</StackPanel>
|
979
|
977
|
</Button>
|
980
|
|
-
|
981
|
978
|
</StackPanel>
|
982
|
979
|
</Grid>
|
983
|
980
|
<StackPanel
|
984
|
|
- Margin="5"
|
985
|
|
- Grid.Column="1"
|
986
|
|
- HorizontalAlignment="Right"
|
987
|
|
- VerticalAlignment="Center"
|
988
|
|
- Orientation="Horizontal">
|
|
981
|
+ Grid.Column="1"
|
|
982
|
+ Margin="5"
|
|
983
|
+ HorizontalAlignment="Right"
|
|
984
|
+ VerticalAlignment="Center"
|
|
985
|
+ Orientation="Horizontal">
|
989
|
986
|
<TextBlock
|
990
|
|
- Margin="5,0,0,0"
|
991
|
|
- Padding="0,0,0,0"
|
992
|
|
- VerticalAlignment="Center"
|
993
|
|
- FontSize="12"
|
994
|
|
- Text="颜色: " />
|
|
987
|
+ Margin="5,0,0,0"
|
|
988
|
+ Padding="0,0,0,0"
|
|
989
|
+ VerticalAlignment="Center"
|
|
990
|
+ FontSize="12"
|
|
991
|
+ Text="颜色: " />
|
995
|
992
|
<Button
|
996
|
|
- x:Name="btnWhite"
|
997
|
|
- Width="20"
|
998
|
|
- Height="20"
|
999
|
|
- Margin="0,2,0,0"
|
1000
|
|
- Background="#FFFFFF"
|
1001
|
|
- Click="BtnWhite_Click"
|
1002
|
|
- Cursor="Hand"
|
1003
|
|
- Visibility="Collapsed" />
|
|
993
|
+ x:Name="btnWhite"
|
|
994
|
+ Width="20"
|
|
995
|
+ Height="20"
|
|
996
|
+ Margin="0,2,0,0"
|
|
997
|
+ Background="#FFFFFF"
|
|
998
|
+ Click="BtnWhite_Click"
|
|
999
|
+ Cursor="Hand"
|
|
1000
|
+ Visibility="Collapsed" />
|
1004
|
1001
|
<Border
|
|
1002
|
+ Width="20"
|
|
1003
|
+ Height="20"
|
|
1004
|
+ Margin="5,2,0,0"
|
|
1005
|
+ Background="#666666">
|
|
1006
|
+ <Button
|
|
1007
|
+ x:Name="btnRed"
|
1005
|
1008
|
Width="20"
|
1006
|
1009
|
Height="20"
|
1007
|
|
- Margin="5,2,0,0"
|
1008
|
|
- Background="#666666">
|
1009
|
|
- <Button
|
1010
|
|
- x:Name="btnRed"
|
1011
|
|
- Width="20"
|
1012
|
|
- Height="20"
|
1013
|
|
- Margin="1,1,1,1"
|
1014
|
|
- HorizontalAlignment="Center"
|
1015
|
|
- Background="#FF0000"
|
1016
|
|
- Click="BtnRed_Click"
|
1017
|
|
- Cursor="Hand"
|
1018
|
|
- Style="{StaticResource NoMouseOverButtonStyle}">
|
|
1010
|
+ Margin="1,1,1,1"
|
|
1011
|
+ HorizontalAlignment="Center"
|
|
1012
|
+ Background="#FF0000"
|
|
1013
|
+ Click="BtnRed_Click"
|
|
1014
|
+ Cursor="Hand"
|
|
1015
|
+ Style="{StaticResource NoMouseOverButtonStyle}">
|
1019
|
1016
|
<Image
|
1020
|
|
- x:Name="imgRed"
|
1021
|
|
- Width="12"
|
1022
|
|
- Source=".\Images\microLessonSystem_999.png"
|
1023
|
|
- Visibility="Visible" />
|
|
1017
|
+ x:Name="imgRed"
|
|
1018
|
+ Width="12"
|
|
1019
|
+ Source=".\Images\microLessonSystem_999.png"
|
|
1020
|
+ Visibility="Visible" />
|
1024
|
1021
|
</Button>
|
1025
|
1022
|
</Border>
|
1026
|
1023
|
<Border
|
|
1024
|
+ Width="20"
|
|
1025
|
+ Height="20"
|
|
1026
|
+ Margin="5,2,0,0"
|
|
1027
|
+ Background="#666666">
|
|
1028
|
+ <Button
|
|
1029
|
+ x:Name="btnGray"
|
1027
|
1030
|
Width="20"
|
1028
|
1031
|
Height="20"
|
1029
|
|
- Margin="5,2,0,0"
|
1030
|
|
- Background="#666666">
|
1031
|
|
- <Button
|
1032
|
|
- x:Name="btnGray"
|
1033
|
|
- Width="20"
|
1034
|
|
- Height="20"
|
1035
|
|
- Margin="1,1,1,1"
|
1036
|
|
- Background="#333333"
|
1037
|
|
- Click="BtnGray_Click"
|
1038
|
|
- Cursor="Hand"
|
1039
|
|
- Style="{StaticResource NoMouseOverButtonStyle}">
|
|
1032
|
+ Margin="1,1,1,1"
|
|
1033
|
+ Background="#333333"
|
|
1034
|
+ Click="BtnGray_Click"
|
|
1035
|
+ Cursor="Hand"
|
|
1036
|
+ Style="{StaticResource NoMouseOverButtonStyle}">
|
1040
|
1037
|
<Image
|
1041
|
|
- x:Name="imgGray"
|
1042
|
|
- Width="12"
|
1043
|
|
- Source=".\Images\microLessonSystem_999.png"
|
1044
|
|
- Visibility="Collapsed" />
|
|
1038
|
+ x:Name="imgGray"
|
|
1039
|
+ Width="12"
|
|
1040
|
+ Source=".\Images\microLessonSystem_999.png"
|
|
1041
|
+ Visibility="Collapsed" />
|
1045
|
1042
|
</Button>
|
1046
|
1043
|
</Border>
|
1047
|
1044
|
<Border
|
|
1045
|
+ Width="20"
|
|
1046
|
+ Height="20"
|
|
1047
|
+ Margin="5,2,0,0"
|
|
1048
|
+ Background="#666666">
|
|
1049
|
+ <Button
|
|
1050
|
+ x:Name="btnCyanBlue"
|
1048
|
1051
|
Width="20"
|
1049
|
1052
|
Height="20"
|
1050
|
|
- Margin="5,2,0,0"
|
1051
|
|
- Background="#666666">
|
1052
|
|
- <Button
|
1053
|
|
- x:Name="btnCyanBlue"
|
1054
|
|
- Width="20"
|
1055
|
|
- Height="20"
|
1056
|
|
- Margin="1,1,1,1"
|
1057
|
|
- Background="#63D600"
|
1058
|
|
- Click="BtnCyanBlue_Click"
|
1059
|
|
- Cursor="Hand"
|
1060
|
|
- Style="{StaticResource NoMouseOverButtonStyle}">
|
|
1053
|
+ Margin="1,1,1,1"
|
|
1054
|
+ Background="#63D600"
|
|
1055
|
+ Click="BtnCyanBlue_Click"
|
|
1056
|
+ Cursor="Hand"
|
|
1057
|
+ Style="{StaticResource NoMouseOverButtonStyle}">
|
1061
|
1058
|
<Image
|
1062
|
|
- x:Name="imgCyanBlue"
|
1063
|
|
- Width="12"
|
1064
|
|
- Source=".\Images\microLessonSystem_999.png"
|
1065
|
|
- Visibility="Collapsed" />
|
|
1059
|
+ x:Name="imgCyanBlue"
|
|
1060
|
+ Width="12"
|
|
1061
|
+ Source=".\Images\microLessonSystem_999.png"
|
|
1062
|
+ Visibility="Collapsed" />
|
1066
|
1063
|
</Button>
|
1067
|
1064
|
</Border>
|
1068
|
1065
|
<Border
|
1069
|
|
- Width="20"
|
1070
|
|
- Height="20"
|
1071
|
|
- Margin="5,2,0,0"
|
1072
|
|
- Background="#666666">
|
|
1066
|
+ Width="20"
|
|
1067
|
+ Height="20"
|
|
1068
|
+ Margin="5,2,0,0"
|
|
1069
|
+ Background="#666666">
|
1073
|
1070
|
|
1074
|
1071
|
<Button
|
1075
|
|
- x:Name="btnYellow"
|
1076
|
|
- Width="20"
|
1077
|
|
- Height="20"
|
1078
|
|
- Margin="1,1,1,1"
|
1079
|
|
- Background="#FFBC00"
|
1080
|
|
- Click="BtnYellow_Click"
|
1081
|
|
- Cursor="Hand"
|
1082
|
|
- Style="{StaticResource NoMouseOverButtonStyle}">
|
|
1072
|
+ x:Name="btnYellow"
|
|
1073
|
+ Width="20"
|
|
1074
|
+ Height="20"
|
|
1075
|
+ Margin="1,1,1,1"
|
|
1076
|
+ Background="#FFBC00"
|
|
1077
|
+ Click="BtnYellow_Click"
|
|
1078
|
+ Cursor="Hand"
|
|
1079
|
+ Style="{StaticResource NoMouseOverButtonStyle}">
|
1083
|
1080
|
|
1084
|
1081
|
<Image
|
1085
|
|
- x:Name="imgYellow"
|
1086
|
|
- Width="12"
|
1087
|
|
- Source=".\Images\microLessonSystem_999.png"
|
1088
|
|
- Visibility="Collapsed" />
|
|
1082
|
+ x:Name="imgYellow"
|
|
1083
|
+ Width="12"
|
|
1084
|
+ Source=".\Images\microLessonSystem_999.png"
|
|
1085
|
+ Visibility="Collapsed" />
|
1089
|
1086
|
</Button>
|
1090
|
1087
|
</Border>
|
1091
|
1088
|
<Border
|
1092
|
|
- Width="20"
|
1093
|
|
- Height="20"
|
1094
|
|
- Margin="5,2,0,0"
|
1095
|
|
- Background="#666666">
|
|
1089
|
+ Width="20"
|
|
1090
|
+ Height="20"
|
|
1091
|
+ Margin="5,2,0,0"
|
|
1092
|
+ Background="#666666">
|
1096
|
1093
|
|
1097
|
1094
|
<Button
|
1098
|
|
- x:Name="btnBlue"
|
1099
|
|
- Width="20"
|
1100
|
|
- Height="20"
|
1101
|
|
- Margin="1,1,1,1"
|
1102
|
|
- Background="#00B4FC"
|
1103
|
|
- Click="BtnBlue_Click"
|
1104
|
|
- Cursor="Hand"
|
1105
|
|
- Style="{StaticResource NoMouseOverButtonStyle}">
|
|
1095
|
+ x:Name="btnBlue"
|
|
1096
|
+ Width="20"
|
|
1097
|
+ Height="20"
|
|
1098
|
+ Margin="1,1,1,1"
|
|
1099
|
+ Background="#00B4FC"
|
|
1100
|
+ Click="BtnBlue_Click"
|
|
1101
|
+ Cursor="Hand"
|
|
1102
|
+ Style="{StaticResource NoMouseOverButtonStyle}">
|
1106
|
1103
|
<Image
|
1107
|
|
- x:Name="imgBlue"
|
1108
|
|
- Width="12"
|
1109
|
|
- Source=".\Images\microLessonSystem_999.png"
|
1110
|
|
- Visibility="Collapsed" />
|
|
1104
|
+ x:Name="imgBlue"
|
|
1105
|
+ Width="12"
|
|
1106
|
+ Source=".\Images\microLessonSystem_999.png"
|
|
1107
|
+ Visibility="Collapsed" />
|
1111
|
1108
|
</Button>
|
1112
|
1109
|
</Border>
|
1113
|
1110
|
<TextBlock
|
1114
|
|
- Margin="5,0,0,0"
|
1115
|
|
- Padding="0,0,0,0"
|
1116
|
|
- VerticalAlignment="Center"
|
1117
|
|
- FontSize="12"
|
1118
|
|
- Text="粗细: " />
|
|
1111
|
+ Margin="5,0,0,0"
|
|
1112
|
+ Padding="0,0,0,0"
|
|
1113
|
+ VerticalAlignment="Center"
|
|
1114
|
+ FontSize="12"
|
|
1115
|
+ Text="粗细: " />
|
1119
|
1116
|
<RadioButton
|
1120
|
|
- x:Name="rbnFine"
|
1121
|
|
- Margin="0"
|
1122
|
|
- VerticalAlignment="Center"
|
1123
|
|
- Click="RbnFine_Click"
|
1124
|
|
- Content=" 细"
|
1125
|
|
- Cursor="Hand"
|
1126
|
|
- FontSize="12"
|
1127
|
|
- IsChecked="True"
|
1128
|
|
- Style="{StaticResource radBase}" />
|
|
1117
|
+ x:Name="rbnFine"
|
|
1118
|
+ Margin="0"
|
|
1119
|
+ VerticalAlignment="Center"
|
|
1120
|
+ Click="RbnFine_Click"
|
|
1121
|
+ Content=" 细"
|
|
1122
|
+ Cursor="Hand"
|
|
1123
|
+ FontSize="12"
|
|
1124
|
+ IsChecked="True"
|
|
1125
|
+ Style="{StaticResource radBase}" />
|
1129
|
1126
|
<RadioButton
|
1130
|
|
- x:Name="rbnIn"
|
1131
|
|
- Margin="5,0,0,0"
|
1132
|
|
- VerticalAlignment="Center"
|
1133
|
|
- Click="RbnIn_Click"
|
1134
|
|
- Content=" 中"
|
1135
|
|
- Cursor="Hand"
|
1136
|
|
- FontSize="12"
|
1137
|
|
- Style="{StaticResource radBase}" />
|
|
1127
|
+ x:Name="rbnIn"
|
|
1128
|
+ Margin="5,0,0,0"
|
|
1129
|
+ VerticalAlignment="Center"
|
|
1130
|
+ Click="RbnIn_Click"
|
|
1131
|
+ Content=" 中"
|
|
1132
|
+ Cursor="Hand"
|
|
1133
|
+ FontSize="12"
|
|
1134
|
+ Style="{StaticResource radBase}" />
|
1138
|
1135
|
<RadioButton
|
1139
|
|
- x:Name="rbnCrude"
|
1140
|
|
- Margin="5,0,0,0"
|
1141
|
|
- VerticalAlignment="Center"
|
1142
|
|
- Click="RbnCrude_Click"
|
1143
|
|
- Content=" 粗"
|
1144
|
|
- Cursor="Hand"
|
1145
|
|
- FontSize="12"
|
1146
|
|
- Style="{StaticResource radBase}" />
|
|
1136
|
+ x:Name="rbnCrude"
|
|
1137
|
+ Margin="5,0,0,0"
|
|
1138
|
+ VerticalAlignment="Center"
|
|
1139
|
+ Click="RbnCrude_Click"
|
|
1140
|
+ Content=" 粗"
|
|
1141
|
+ Cursor="Hand"
|
|
1142
|
+ FontSize="12"
|
|
1143
|
+ Style="{StaticResource radBase}" />
|
1147
|
1144
|
</StackPanel>
|
1148
|
1145
|
<StackPanel
|
1149
|
|
- Margin="5"
|
1150
|
|
- Grid.Column="2"
|
1151
|
|
- HorizontalAlignment="Right"
|
1152
|
|
- VerticalAlignment="Center"
|
1153
|
|
- Orientation="Horizontal">
|
|
1146
|
+ Grid.Column="2"
|
|
1147
|
+ Margin="5"
|
|
1148
|
+ HorizontalAlignment="Right"
|
|
1149
|
+ VerticalAlignment="Center"
|
|
1150
|
+ Orientation="Horizontal">
|
1154
|
1151
|
<TextBlock
|
1155
|
|
- Padding="5,0,0,0"
|
1156
|
|
- VerticalAlignment="Center"
|
1157
|
|
- FontSize="12"
|
1158
|
|
- Text="摄像头: " />
|
|
1152
|
+ Padding="5,0,0,0"
|
|
1153
|
+ VerticalAlignment="Center"
|
|
1154
|
+ FontSize="12"
|
|
1155
|
+ Text="摄像头: " />
|
1159
|
1156
|
<RadioButton
|
1160
|
|
- x:Name="rbnOpen"
|
1161
|
|
- Margin="0,0,0,0"
|
1162
|
|
- VerticalAlignment="Center"
|
1163
|
|
- Click="RbnOpen_Click"
|
1164
|
|
- Content=" 开"
|
1165
|
|
- Cursor="Hand"
|
1166
|
|
- FontSize="12"
|
1167
|
|
- Style="{StaticResource radBase}" />
|
|
1157
|
+ x:Name="rbnOpen"
|
|
1158
|
+ Margin="0,0,0,0"
|
|
1159
|
+ VerticalAlignment="Center"
|
|
1160
|
+ Click="RbnOpen_Click"
|
|
1161
|
+ Content=" 开"
|
|
1162
|
+ Cursor="Hand"
|
|
1163
|
+ FontSize="12"
|
|
1164
|
+ Style="{StaticResource radBase}" />
|
1168
|
1165
|
<RadioButton
|
1169
|
|
- x:Name="rbnTurnOff"
|
1170
|
|
- Margin="5,0,10,0"
|
1171
|
|
- VerticalAlignment="Center"
|
1172
|
|
- Click="RbnTurnOff_Click"
|
1173
|
|
- Content=" 关"
|
1174
|
|
- Cursor="Hand"
|
1175
|
|
- FontSize="12"
|
1176
|
|
- IsChecked="True"
|
1177
|
|
- Style="{StaticResource radBase}" />
|
|
1166
|
+ x:Name="rbnTurnOff"
|
|
1167
|
+ Margin="5,0,10,0"
|
|
1168
|
+ VerticalAlignment="Center"
|
|
1169
|
+ Click="RbnTurnOff_Click"
|
|
1170
|
+ Content=" 关"
|
|
1171
|
+ Cursor="Hand"
|
|
1172
|
+ FontSize="12"
|
|
1173
|
+ IsChecked="True"
|
|
1174
|
+ Style="{StaticResource radBase}" />
|
1178
|
1175
|
</StackPanel>
|
1179
|
1176
|
</Grid>
|
1180
|
1177
|
</Grid>
|
|
@@ -1306,7 +1303,6 @@
|
1306
|
1303
|
Foreground="#333333"
|
1307
|
1304
|
Text="科技蓝" />
|
1308
|
1305
|
</Grid>
|
1309
|
|
-
|
1310
|
1306
|
</Grid>
|
1311
|
1307
|
|
1312
|
1308
|
<Label
|
|
@@ -1545,7 +1541,6 @@
|
1545
|
1541
|
<Grid.ColumnDefinitions>
|
1546
|
1542
|
<ColumnDefinition Width="76" />
|
1547
|
1543
|
<ColumnDefinition Width="76" />
|
1548
|
|
-
|
1549
|
1544
|
</Grid.ColumnDefinitions>
|
1550
|
1545
|
<!-- 浏览按钮 -->
|
1551
|
1546
|
<Button
|
|
@@ -1665,7 +1660,6 @@
|
1665
|
1660
|
</Grid.ColumnDefinitions>
|
1666
|
1661
|
<Grid.RowDefinitions>
|
1667
|
1662
|
<RowDefinition Height="50*" />
|
1668
|
|
-
|
1669
|
1663
|
</Grid.RowDefinitions>
|
1670
|
1664
|
<Grid Grid.Column="2">
|
1671
|
1665
|
<!-- 保存 -->
|
|
@@ -1701,7 +1695,6 @@
|
1701
|
1695
|
Foreground="#333333"
|
1702
|
1696
|
Text="未连接"
|
1703
|
1697
|
Visibility="Hidden" />
|
1704
|
|
-
|
1705
|
1698
|
</Grid>
|
1706
|
1699
|
</Grid>
|
1707
|
1700
|
</Grid>
|
|
@@ -1898,7 +1891,7 @@
|
1898
|
1891
|
FontSize="12"
|
1899
|
1892
|
Foreground="White"
|
1900
|
1893
|
IsDefault="True" />
|
1901
|
|
-
|
|
1894
|
+
|
1902
|
1895
|
<Button
|
1903
|
1896
|
x:Name="btnPrint_Print"
|
1904
|
1897
|
Grid.Column="4"
|
|
@@ -1915,9 +1908,7 @@
|
1915
|
1908
|
Foreground="White"
|
1916
|
1909
|
IsDefault="True" />
|
1917
|
1910
|
</Grid>
|
1918
|
|
-
|
1919
|
1911
|
</Grid>
|
1920
|
|
-
|
1921
|
1912
|
</Border>
|
1922
|
1913
|
|
1923
|
1914
|
<Grid
|