星火微课系统客户端
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

XHMicroLessonSystemWindow.xaml 26KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  1. <Window x:Class="XHWK.WKTool.XHMicroLessonSystemWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:wfi ="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"
  7. xmlns:aforge ="clr-namespace:AForge.Controls;assembly=AForge.Controls"
  8. xmlns:gifLib="http://wpfanimatedgif.codeplex.com"
  9. xmlns:local="clr-namespace:XHWK.WKTool"
  10. mc:Ignorable="d"
  11. Title="星火微课系统" Height="1040" Width="1276" WindowStartupLocation="CenterScreen"
  12. WindowStyle="None" AllowsTransparency="True" Background="#EFF1F8" ShowInTaskbar="True" ResizeMode="CanMinimize"
  13. >
  14. <Viewbox>
  15. <Grid x:Name="GridContent" Height="1040">
  16. <!--分3行-->
  17. <Grid.RowDefinitions>
  18. <RowDefinition Height="110"/>
  19. <RowDefinition Height="*"/>
  20. <RowDefinition Height="40"/>
  21. </Grid.RowDefinitions>
  22. <Grid Grid.Row="0" Background="#2D8CF0" MouseLeftButtonDown="Window_MouseLeftButtonDown" Margin="0,0,0,0">
  23. <Grid.RowDefinitions>
  24. <RowDefinition Height="auto"/>
  25. <RowDefinition Height="auto"/>
  26. </Grid.RowDefinitions>
  27. <!--第一行-->
  28. <StackPanel Grid.Row="0" Orientation="Horizontal" Margin="10,2,10,0">
  29. <Image Source="./Images/microLessonSystem_0.png"/>
  30. <TextBlock Text="星火微课系统" FontSize="14" Padding="5,0,0,0" Foreground="#FFFFFF"/>
  31. </StackPanel>
  32. <StackPanel Grid.Row="0" Orientation="Horizontal" HorizontalAlignment="Right" Margin="10,2,10,0">
  33. <Button Cursor="Hand" x:Name="btnLoginType" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Margin="0,0,10,0" Click="BtnLoginType_Click">
  34. <StackPanel Orientation="Horizontal">
  35. <Image Source="./Images/microLessonSystem_9.png"/>
  36. <TextBlock x:Name="txbLoginType" Text="未登录" FontSize="14" Padding="5,0,0,0" Foreground="#FFFFFF"/>
  37. </StackPanel>
  38. </Button>
  39. <Button Cursor="Hand" x:Name="btnShrink" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="BtnShrink_Click" Margin="8,0,8,0">
  40. <Image Source="./Images/microLessonSystem_19.png"/>
  41. </Button>
  42. <!--<Button Cursor="Hand" x:Name="btnEnlarge" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Margin="8,0,8,0">
  43. <Image Source="./Images/microLessonSystem_8.png"/>
  44. </Button>-->
  45. <Button Cursor="Hand" x:Name="btnDown" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="BtnDown_Click" >
  46. <Image Source="./Images/microLessonSystem_10.png"/>
  47. </Button>
  48. </StackPanel>
  49. <!--第二行-->
  50. <StackPanel Grid.Row="1" Orientation="Horizontal" Margin="10,6,0,0">
  51. <Button Cursor="Hand" x:Name="btnScreenRecording" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="BtnScreenRecording_Click" Margin="30,0,0,0">
  52. <StackPanel Orientation="Vertical">
  53. <Image x:Name="ImgScreenRecording" Source="./Images/microLessonSystem_2.png"/>
  54. <Image x:Name="ImgScreenRecordingTwo" Source="./Images/microLessonSystem_3.png" Visibility="Collapsed"/>
  55. <TextBlock x:Name="TxbRecordScreenWord" Text="录屏" Padding="0,6,0,0" FontSize="14" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  56. </StackPanel>
  57. </Button>
  58. <Button Cursor="Hand" x:Name="btnScreenshot" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Margin="30,0,0,0" Click="BtnScreenshot_Click">
  59. <StackPanel Orientation="Vertical">
  60. <Image x:Name="ImgScreenshot" Source="./Images/microLessonSystem_12.png"/>
  61. <Image x:Name="ImgScreenshotTwo" Source="./Images/microLessonSystem_11.png" Visibility="Collapsed"/>
  62. <TextBlock Text="截图" Padding="0,6,0,0" FontSize="14" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  63. </StackPanel>
  64. </Button>
  65. <Button Cursor="Hand" x:Name="btnImport" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="BtnImport_Click" Margin="30,0,0,0">
  66. <StackPanel Orientation="Vertical">
  67. <Image x:Name="ImgImport" Source="./Images/microLessonSystem_6.png"/>
  68. <Image x:Name="ImgImportTwo" Source="./Images/microLessonSystem_7.png" Visibility="Collapsed"/>
  69. <TextBlock Text="导入" Padding="0,6,0,0" FontSize="14" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  70. </StackPanel>
  71. </Button>
  72. <Button Cursor="Hand" x:Name="BtnRecord" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Margin="100,0,0,0" Click="BtnRecord_Click">
  73. <StackPanel Orientation="Vertical">
  74. <Image x:Name="ImgRecord" Source="./Images/microLessonSystem_14.png"/>
  75. <Image x:Name="ImgRecordTwo" Source="./Images/microLessonSystem_13.png" Visibility="Collapsed"/>
  76. <TextBlock x:Name="TxbRecordingWord" Text="录制" Padding="0,6,0,0" FontSize="14" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  77. </StackPanel>
  78. </Button>
  79. <Button Cursor="Hand" x:Name="btnStop" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="BtnStop_Click" Margin="30,0,0,0">
  80. <StackPanel Orientation="Vertical">
  81. <Image x:Name="ImgStop" Source="./Images/microLessonSystem_21.png"/>
  82. <Image x:Name="ImgStopTwo" Source="./Images/microLessonSystem_20.png" Visibility="Collapsed"/>
  83. <TextBlock Text="停止" FontSize="14" Padding="0,6,0,0" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  84. </StackPanel>
  85. </Button>
  86. <TextBlock x:Name="txbType" Text="" FontSize="20" Foreground="#FFFFFF" Margin="20,20,0,0"/>
  87. </StackPanel>
  88. <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Right" Margin="10,10,10,0">
  89. <Button Cursor="Hand" x:Name="btnAdd" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="BtnAdd_Click" Margin="0,0,30,0">
  90. <StackPanel Orientation="Vertical">
  91. <Image x:Name="ImgAdd" Source="./Images/microLessonSystem_25.png" Visibility="Visible"/>
  92. <Image x:Name="ImgAddTwo" Source="./Images/microLessonSystem_24.png" Visibility="Collapsed"/>
  93. <TextBlock Text="增加" FontSize="14" Padding="0,6,0,0" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  94. </StackPanel>
  95. </Button>
  96. <Button Cursor="Hand" x:Name="btnPrint" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Margin="0,0,30,0" Click="BtnPrint_Click">
  97. <StackPanel Orientation="Vertical">
  98. <Image x:Name="ImgPrint" Source="./Images/microLessonSystem_4.png" Visibility="Collapsed"/>
  99. <Image x:Name="ImgPrintTwo" Source="./Images/microLessonSystem_5.png" Visibility="Visible"/>
  100. <TextBlock Text="打印" FontSize="14" Padding="0,6,0,0" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  101. </StackPanel>
  102. </Button>
  103. <!--<Button Cursor="Hand" x:Name="btnUpload" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="BtnUpload_Click" Margin="0,0,30,0">
  104. <StackPanel Orientation="Vertical">
  105. <Image x:Name="ImgUpload" Source="./Images/microLessonSystem_15.png" Visibility="Collapsed"/>
  106. <Image x:Name="ImgUploadTwo" Source="./Images/microLessonSystem_16.png" Visibility="Visible"/>
  107. <TextBlock Text="上传" FontSize="14" Padding="0,6,0,0" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  108. </StackPanel>
  109. </Button>-->
  110. <Button Cursor="Hand" x:Name="btnUpload" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Margin="0,0,30,0" Click="BtnUpload_Click">
  111. <StackPanel Orientation="Vertical">
  112. <Image x:Name="ImgUpload" Source="./Images/microLessonSystem_22.png" Visibility="Collapsed"/>
  113. <Image x:Name="ImgUploadTwo" Source="./Images/microLessonSystem_1.png" Visibility="Visible"/>
  114. <TextBlock Text="我的" FontSize="14" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  115. </StackPanel>
  116. </Button>
  117. <Button Cursor="Hand" x:Name="btnSetUp" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Margin="0,0,30,0" Click="BtnSetUp_Click">
  118. <StackPanel Orientation="Vertical">
  119. <Image x:Name="ImgSetUp" Source="./Images/microLessonSystem_18.png" Visibility="Visible"/>
  120. <Image x:Name="ImgSetUpTwo" Source="./Images/microLessonSystem_17.png" Visibility="Collapsed"/>
  121. <TextBlock Text="设置" FontSize="14" Padding="0,6,0,0" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  122. </StackPanel>
  123. </Button>
  124. </StackPanel>
  125. <Button Content="Button" HorizontalAlignment="Left" Margin="637,15,0,0" Grid.Row="1" VerticalAlignment="Top" Width="75" Click="Button_Click"/>
  126. </Grid>
  127. <!--主内容-->
  128. <Grid Grid.Row="1" x:Name="GridMain" Width="1276">
  129. <ScrollViewer x:Name="scroMain" VerticalScrollBarVisibility="Visible">
  130. <Grid x:Name="gridM" Margin="0,0,0,0" Background="#FFFFFF" Visibility="Visible" Height="1780">
  131. <Grid>
  132. <Border Grid.Row="1" CornerRadius="5">
  133. <Grid x:Name="IMG" Margin="0,0,0,0">
  134. <Grid.Resources>
  135. <TransformGroup x:Key="Imageview">
  136. <ScaleTransform/>
  137. <TranslateTransform/>
  138. </TransformGroup>
  139. </Grid.Resources>
  140. <ScrollViewer HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Disabled" Cursor="SizeAll"
  141. Margin="0,0,0,0" Focusable="False" x:Name="BackFrame">
  142. <ContentControl MouseLeftButtonDown="IMG1_MouseLeftButtonDown"
  143. MouseLeftButtonUp="IMG1_MouseLeftButtonUp"
  144. MouseMove="IMG1_MouseMove"
  145. MouseWheel="IMG1_MouseWheel" >
  146. <Image Name="imgCanvas" Width="635" Height="auto" VerticalAlignment="Top" HorizontalAlignment="Left" Stretch="Uniform" MouseDown="PicEMap_MouseDown" RenderTransform="{StaticResource Imageview}" MouseRightButtonDown="imgCanvas_MouseRightButtonDown">
  147. </Image>
  148. </ContentControl>
  149. </ScrollViewer>
  150. </Grid>
  151. </Border>
  152. </Grid>
  153. <!--导入图片-->
  154. <Image x:Name="imgDocumentation"/>
  155. <!--<Button Cursor="Hand" x:Name="btnOk" Height="50" Width="50" Content="√" FontSize="26" Background="#2E8CF0" Foreground="#FFFFFF" Click="btnOk_Click" Visibility="Collapsed"/>-->
  156. <InkCanvas Grid.Row="0" x:Name="blackboard_canvas" Background="Transparent" Visibility="Collapsed" Grid.ColumnSpan="2" />
  157. <!--摄像头-->
  158. <!--<wfi:WindowsFormsHost Grid.Row="0" Grid.Column="1" x:Name="wfhCamera" Height="124" Width="172" HorizontalAlignment="Right" Margin="0,10,30.10,0" VerticalAlignment="Top">
  159. <aforge:VideoSourcePlayer x:Name="player" Height="124" Width="172" />
  160. </wfi:WindowsFormsHost>-->
  161. <!--<Image x:Name="imgLoad"
  162. Width="300"
  163. Height="300"
  164. gifLib:ImageBehavior.AnimatedSource="./Images/img_load.gif" VerticalAlignment="Top" Margin="0,200,0,0" Visibility="Visible"/>-->
  165. </Grid>
  166. </ScrollViewer>
  167. <Image x:Name="imgPlayerLeft" Width="172" Height="124" Source="./Images/microLessonSystem_17.png" HorizontalAlignment="Left" Margin="10,7,10,10" VerticalAlignment="Top" Visibility="Collapsed"/>
  168. <Image x:Name="imgPlayerRight" Width="172" Height="124" Source="./Images/microLessonSystem_17.png" HorizontalAlignment="Right" Margin="10,7,26,10" VerticalAlignment="Top" Visibility="Collapsed"/>
  169. <Image x:Name="imgPlayerLeftUnder" Width="172" Height="124" Source="./Images/microLessonSystem_17.png" HorizontalAlignment="Left" Margin="10,7,10,10" VerticalAlignment="Bottom" Visibility="Collapsed"/>
  170. <Image x:Name="imgPlayerRightUnder" Width="172" Height="124" Source="./Images/microLessonSystem_17.png" HorizontalAlignment="Right" Margin="10,7,26,10" VerticalAlignment="Bottom" Visibility="Collapsed"/>
  171. <Label Content="" Grid.Column="0" Height="2" Width="2" HorizontalAlignment="Left" VerticalAlignment="Top" Background="#FF0F0F0F" Margin="1,0,0,0"/>
  172. <Label Content="" Grid.Column="1" Height="2" Width="2" Background="#FF0F0F0F" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,0,16,0"/>
  173. <Label Content="" Grid.Column="0" Height="2" Width="2" Background="#FF0F0F0F" HorizontalAlignment="Left" VerticalAlignment="Bottom" Margin="1,0,0,0"/>
  174. <Label Content="" Grid.Column="1" Height="2" Width="2" Background="#FF0F0F0F" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="0,0,16,0"/>
  175. </Grid>
  176. <!--页码-->
  177. <Grid Grid.Row="1" x:Name="gridPage" Visibility="Collapsed">
  178. <StackPanel Grid.Row="0" Orientation="Horizontal" Background="#FFFFFF" Width="180" HorizontalAlignment="Center"
  179. Height="30" Margin="0,0,0,0" Grid.Column="1" VerticalAlignment="Bottom">
  180. <Button Cursor="Hand" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}"
  181. x:Name="last_button"
  182. Width="60" Height="20"
  183. Click="last_button_Click">
  184. <Button.Content>
  185. <StackPanel>
  186. <Image Width="16" Height="12" Source=".\Images\class_p1.png" />
  187. </StackPanel>
  188. </Button.Content>
  189. </Button>
  190. <Grid Width="60" Background="Transparent">
  191. <Grid.RowDefinitions>
  192. <RowDefinition Height="311*"/>
  193. <RowDefinition Height="483*"/>
  194. </Grid.RowDefinitions>
  195. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,-12,0,0" Grid.Row="1" Background="Transparent">
  196. <StackPanel HorizontalAlignment="Center" Orientation="Horizontal" Background="Transparent">
  197. <TextBlock x:Name="txbCurrpage" Text="{Binding currpage}" TextAlignment="Center" FontSize="15"/>
  198. <TextBlock Text="/" TextAlignment="Center" FontSize="15"/>
  199. <TextBlock Text="{Binding pagenum}" TextAlignment="Center" FontSize="15"/>
  200. </StackPanel>
  201. </StackPanel>
  202. </Grid>
  203. <Button Cursor="Hand" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}"
  204. x:Name="next_btn" Background="Transparent"
  205. Width="60" Height="20"
  206. Click="next_btn_Click">
  207. <Button.Content>
  208. <StackPanel>
  209. <Image Width="16" Height="12" Source=".\Images\class_p2.png" />
  210. </StackPanel>
  211. </Button.Content>
  212. </Button>
  213. </StackPanel>
  214. </Grid>
  215. <!--Loding-->
  216. <Grid Grid.Row="1">
  217. <Image x:Name="imgLoad"
  218. Width="300"
  219. Height="300"
  220. gifLib:ImageBehavior.AnimatedSource="./Images/img_load.gif" VerticalAlignment="Top" Margin="0,200,0,0" Visibility="Collapsed"/>
  221. </Grid>
  222. <!--设置-->
  223. <Grid Grid.Row="1" x:Name="gridSetUp" Background="#FFFFFF" Visibility="Collapsed" Width="1276">
  224. <Grid.RowDefinitions>
  225. <RowDefinition Height="90"/>
  226. <RowDefinition Height="70"/>
  227. <RowDefinition Height="50"/>
  228. <RowDefinition Height="70"/>
  229. <RowDefinition Height="70"/>
  230. <RowDefinition Height="70"/>
  231. <RowDefinition Height="70"/>
  232. <RowDefinition Height="*"/>
  233. </Grid.RowDefinitions>
  234. <StackPanel Grid.Row="0" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,30,0,0">
  235. <TextBlock Text=" 点阵笔" FontSize="16" Foreground="#2D8CF0" Width="80"/>
  236. <TextBlock x:Name="txbNotConnecteds" Text="未连接" FontSize="14" Foreground="#333333" Padding="10,0,0,0"/>
  237. </StackPanel>
  238. <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,0,0,0">
  239. <TextBlock Text="视频格式" FontSize="16" Foreground="#2D8CF0" Width="80"/>
  240. <RadioButton x:Name="rbnMP4" Cursor="Hand" Content="MP4" FontSize="14" Foreground="#333333" Margin="10,2,0,0" IsChecked="True"/>
  241. <RadioButton x:Name="rbnFLV" Cursor="Hand" Content="FLV" FontSize="14" Foreground="#333333" Margin="20,2,0,0"/>
  242. <RadioButton x:Name="rbnAVI" Cursor="Hand" Content="AVI" FontSize="14" Foreground="#333333" Margin="20,2,0,0"/>
  243. </StackPanel>
  244. <StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,0,0,0">
  245. <TextBlock Text="头像位置" FontSize="16" Foreground="#2D8CF0" Width="80"/>
  246. <RadioButton Cursor="Hand" x:Name="rbnRight" Content="右上" FontSize="14" Foreground="#333333" Margin="10,2,0,0" IsChecked="True"/>
  247. <RadioButton Cursor="Hand" x:Name="rbnRightUnder" Content="右下" FontSize="14" Foreground="#333333" Margin="20,2,0,0"/>
  248. <RadioButton Cursor="Hand" x:Name="rbnLeft" Content="左上" FontSize="14" Foreground="#333333" Margin="20,2,0,0" />
  249. <RadioButton Cursor="Hand" x:Name="rbnLeftUnder" Content="左下" FontSize="14" Foreground="#333333" Margin="20,2,0,0"/>
  250. </StackPanel>
  251. <StackPanel Grid.Row="3" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,0,0,0" Visibility="Collapsed">
  252. <TextBlock Text="视频声音" FontSize="16" Foreground="#2D8CF0" Width="80"/>
  253. <RadioButton x:Name="rbnY" Cursor="Hand" Content="有" FontSize="14" Foreground="#333333" Margin="10,2,0,0" IsChecked="True"/>
  254. <RadioButton x:Name="rbnN" Cursor="Hand" Content="无" FontSize="14" Foreground="#333333" Margin="20,2,0,0"/>
  255. </StackPanel>
  256. <StackPanel Grid.Row="3" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,0,0,0">
  257. <TextBlock x:Name="txbFilePath" Text="文件路径" FontSize="16" Width="80" Foreground="#2D8CF0" Padding="2,26,10,0"/>
  258. <!--输入框-->
  259. <Border Background="#CDD6E0" Width="525" Height="43" CornerRadius="3">
  260. <Label x:Name="txbStoragePath" Content="D:\" FontSize="16" Foreground="#333333" Padding="5,12,2,2" Width="523" Height="42" BorderBrush="{x:Null}" BorderThickness="0"/>
  261. </Border>
  262. <!--浏览按钮-->
  263. <Button Cursor="Hand" x:Name="btnBrowse" Content="打开" FontSize="18" Width="80" Height="43" Margin="18,0,0,0" Click="BtnBrowse_Click">
  264. <Button.Template>
  265. <ControlTemplate TargetType="{x:Type Button}">
  266. <Border
  267. BorderBrush="{TemplateBinding Control.BorderBrush}"
  268. BorderThickness="1"
  269. CornerRadius="2">
  270. <Border.Background>#CDD6E0</Border.Background>
  271. <ContentPresenter
  272. HorizontalAlignment="Center"
  273. VerticalAlignment="Center"
  274. Content="{TemplateBinding ContentControl.Content}" />
  275. </Border>
  276. </ControlTemplate>
  277. </Button.Template>
  278. </Button>
  279. </StackPanel>
  280. <StackPanel Grid.Row="4" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,30,0,0">
  281. <TextBlock Text=" 版本号" FontSize="16" Width="80" Foreground="#2D8CF0"/>
  282. <TextBlock x:Name="txbv" Text="V0.0.0" FontSize="16" Foreground="#333333" Padding="10,0,0,0"/>
  283. </StackPanel>
  284. <StackPanel Grid.Row="5" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,30,0,0">
  285. <TextBlock Text="版权所有" FontSize="16" Width="80" Foreground="#2D8CF0"/>
  286. <TextBlock Text="河南星火燎原软件科技有限公司" FontSize="14" Foreground="#333333" Padding="10,0,0,0"/>
  287. </StackPanel>
  288. <!--第四行 开始按钮-->
  289. <Button Cursor="Hand" Grid.Row="6" x:Name="btnSave" Content="保存" FontSize="18" Foreground="#FFFFFF" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Width="115" Height="45" Margin="10,0,10,0" Click="BtnSave_Click">
  290. <Button.Template>
  291. <ControlTemplate TargetType="{x:Type Button}">
  292. <Border
  293. BorderBrush="{TemplateBinding Control.BorderBrush}"
  294. BorderThickness="1"
  295. CornerRadius="2">
  296. <Border.Background>#2D8CF0</Border.Background>
  297. <ContentPresenter
  298. HorizontalAlignment="Center"
  299. VerticalAlignment="Center"
  300. Content="{TemplateBinding ContentControl.Content}" />
  301. </Border>
  302. </ControlTemplate>
  303. </Button.Template>
  304. </Button>
  305. </Grid>
  306. <Grid Grid.Row="2" Background="#EFF1F8" Margin="0,2,0,0">
  307. <StackPanel Orientation="Horizontal" Margin="0,0,0,0">
  308. <TextBlock Text="颜色:" FontSize="14" Padding="10,10,0,0"/>
  309. <Button Cursor="Hand" x:Name="btnWhite" Background="#FFFFFF" Width="20" Height="20" Click="BtnWhite_Click" Margin="0,2,0,0"/>
  310. <Button Cursor="Hand" x:Name="btnRed" Background="#FF0000" Width="20" Height="20" Margin="5,2,0,0" Click="BtnRed_Click"/>
  311. <Button Cursor="Hand" x:Name="btnGray" Background="#333333" Width="20" Height="20" Margin="5,2,0,0" Click="BtnGray_Click"/>
  312. <Button Cursor="Hand" x:Name="btnCyanBlue" Background="#63D600" Width="20" Height="20" Margin="5,2,0,0" Click="BtnCyanBlue_Click"/>
  313. <Button Cursor="Hand" x:Name="btnYellow" Background="#FFBC00" Width="20" Height="20" Margin="5,2,0,0" Click="BtnYellow_Click"/>
  314. <Button Cursor="Hand" x:Name="btnBlue" Background="#00B4FC" Width="20" Height="20" Margin="5,2,0,0" Click="BtnBlue_Click"/>
  315. <TextBlock Text="粗细:" FontSize="14" Padding="15,5,0,0" Margin="5,5,0,0"/>
  316. <RadioButton Cursor="Hand" x:Name="rbnFine" Content="细" FontSize="14" Margin="0,10,0,0" IsChecked="True" Click="RbnFine_Click"/>
  317. <RadioButton Cursor="Hand" x:Name="rbnIn" Content="中" FontSize="14" Margin="5,10,0,0" Click="RbnIn_Click"/>
  318. <RadioButton Cursor="Hand" x:Name="rbnCrude" Content="粗" FontSize="14" Margin="5,10,0,0" Click="RbnCrude_Click"/>
  319. <StackPanel Orientation="Horizontal">
  320. <TextBlock Text="摄像头:" FontSize="14" Padding="15,10,0,0"/>
  321. <RadioButton Cursor="Hand" x:Name="rbnOpen" Content="开" FontSize="14" Margin="0,10,0,0" Click="RbnOpen_Click"/>
  322. <RadioButton Cursor="Hand" x:Name="rbnTurnOff" Content="关" FontSize="14" Margin="5,10,0,0" IsChecked="True" Click="RbnTurnOff_Click"/>
  323. </StackPanel>
  324. </StackPanel>
  325. <StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,5,10,0">
  326. <TextBlock Text="智能笔状态:" FontSize="14" Padding="0,5,0,0"/>
  327. <TextBlock x:Name="txbNotConnected" Text="未连接" FontSize="14" Padding="0,5,5,0"/>
  328. </StackPanel>
  329. </Grid>
  330. </Grid>
  331. </Viewbox>
  332. </Window>