星火微课系统客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

XHMicroLessonSystemWindow.xaml 39KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589
  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="1036" Width="1290"
  12. WindowStyle="None" WindowStartupLocation="CenterScreen" AllowsTransparency="True" Background="Transparent" ShowInTaskbar="True" ResizeMode="CanMinimize" BorderThickness="7">
  13. <Window.Effect>
  14. <DropShadowEffect BlurRadius="10" Color="#bababa" Direction="80" ShadowDepth="0"/>
  15. </Window.Effect>
  16. <!--<Grid>
  17. <Border CornerRadius="0,0,0,0"
  18. Background="White"
  19. BorderBrush="Gray"
  20. BorderThickness="1"
  21. Margin="10,10,10,10">
  22. <Border.Effect>
  23. <DropShadowEffect Color="Gray" BlurRadius="10" ShadowDepth="0" Opacity="0.8" />
  24. </Border.Effect>
  25. </Border>
  26. </Grid>-->
  27. <Window.Resources>
  28. <!-- ListBox容器样式 -->
  29. <Style x:Key="ListBoxItemContainerStyle" TargetType="{x:Type ListBoxItem}">
  30. <Setter Property="HorizontalContentAlignment" Value="Stretch" />
  31. <Setter Property="HorizontalAlignment" Value="Stretch" />
  32. <Setter Property="Template">
  33. <Setter.Value>
  34. <ControlTemplate TargetType="{x:Type ListBoxItem}">
  35. <Border
  36. x:Name="itemBox"
  37. Background="Transparent"
  38. BorderBrush="Transparent"
  39. BorderThickness="0">
  40. <ContentPresenter />
  41. </Border>
  42. <ControlTemplate.Triggers />
  43. </ControlTemplate>
  44. </Setter.Value>
  45. </Setter>
  46. </Style>
  47. <DataTemplate x:Key="TongjiItem">
  48. <UniformGrid
  49. Height="50"
  50. Margin="0,0,0,0"
  51. Background="{Binding Colour}"
  52. Columns="5"
  53. Rows="1">
  54. <!--题号-->
  55. <TextBlock
  56. HorizontalAlignment="Center"
  57. VerticalAlignment="Center"
  58. FontSize="16"
  59. Text="{Binding SerialNumber}" />
  60. <Grid>
  61. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center"
  62. VerticalAlignment="Center">
  63. <TextBox IsEnabled="{Binding IsEnabled,Mode=TwoWay}"
  64. HorizontalAlignment="Center"
  65. VerticalAlignment="Center"
  66. FontSize="16" Height="30" Padding="0,5,0,0"
  67. Text="{Binding VideoName,Mode=TwoWay}" Width="150"/>
  68. <Button x:Name="btnModify" Background="Transparent"
  69. Cursor="Hand"
  70. BorderThickness="0" Click="BtnModify_Click">
  71. <Grid>
  72. <Image Source="./Images/fileDirectory3.png" Margin="6,6,6,6" Height="20" Visibility="{Binding vis}"/>
  73. <Image Source="./Images/fileDirectory4.png" Margin="6,6,6,6" Height="20" Visibility="{Binding cos}"/>
  74. </Grid>
  75. </Button>
  76. </StackPanel>
  77. </Grid>
  78. <!--分值-->
  79. <!--
  80. <TextBlock
  81. HorizontalAlignment="Center"
  82. VerticalAlignment="Center"
  83. FontSize="15"
  84. Text="{Binding VideoDuration}" />-->
  85. <!--平均时长-->
  86. <TextBlock
  87. HorizontalAlignment="Center"
  88. VerticalAlignment="Center"
  89. FontSize="16"
  90. Text="{Binding VideoSize}" />
  91. <!--最短时长-->
  92. <TextBlock
  93. HorizontalAlignment="Center"
  94. VerticalAlignment="Center"
  95. FontSize="16"
  96. Text="{Binding VideoTime}" />
  97. <Grid>
  98. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center"
  99. VerticalAlignment="Center">
  100. <Button x:Name="btnPlay" Background="Transparent"
  101. Cursor="Hand"
  102. BorderThickness="0" Click="BtnPlay_Click">
  103. <Grid>
  104. <Image Source="./Images/fileDirectory1.png" Margin="10" Height="20" Visibility="{Binding vis}"/>
  105. <Image Source="./Images/fileDirectory2.png" Margin="10" Height="20" Visibility="{Binding cos}"/>
  106. </Grid>
  107. </Button>
  108. <Button x:Name="btnUpload" Background="Transparent"
  109. Cursor="Hand"
  110. BorderThickness="0" Click="BtnUploads_Click">
  111. <Grid>
  112. <Image Source="./Images/fileDirectory7.png" Margin="6,6,6,6" Height="20" Visibility="{Binding vis}"/>
  113. <Image Source="./Images/fileDirectory8.png" Margin="6,6,6,6" Height="20" Visibility="{Binding cos}"/>
  114. </Grid>
  115. </Button>
  116. <Button x:Name="btnDelete" Background="Transparent"
  117. Cursor="Hand"
  118. BorderThickness="0" Click="BtnDelete_Click">
  119. <Grid>
  120. <Image Source="./Images/fileDirectory5.png" Margin="6,6,6,6" Height="20" Visibility="{Binding vis}"/>
  121. <Image Source="./Images/fileDirectory6.png" Margin="6,6,6,6" Height="20" Visibility="{Binding cos}"/>
  122. </Grid>
  123. </Button>
  124. </StackPanel>
  125. </Grid>
  126. </UniformGrid>
  127. </DataTemplate>
  128. </Window.Resources>
  129. <Window.BorderBrush>
  130. <RadialGradientBrush>
  131. <GradientStop Offset="0.997" Color="#001B1919"/>
  132. <GradientStop Color="Black"/>
  133. </RadialGradientBrush>
  134. </Window.BorderBrush>
  135. <Grid x:Name="GridContent" Height="1030" Width="1276" >
  136. <!--分3行-->
  137. <Grid.RowDefinitions>
  138. <RowDefinition Height="10*"/>
  139. <RowDefinition Height="85*"/>
  140. <RowDefinition Height="5*"/>
  141. </Grid.RowDefinitions>
  142. <Grid Grid.Row="0" Background="#2D8CF0" MouseLeftButtonDown="Window_MouseLeftButtonDown" Margin="0,0,0,0" MinHeight="100px" MouseDown="Grid_MouseDown">
  143. <Grid.RowDefinitions>
  144. <RowDefinition Height="auto"/>
  145. <RowDefinition Height="auto"/>
  146. </Grid.RowDefinitions>
  147. <!--第一行-->
  148. <StackPanel Grid.Row="0" Orientation="Horizontal" Margin="10,2,10,0">
  149. <Image Source="./Images/microLessonSystem_0.png"/>
  150. <TextBlock Text="星火微课系统" FontSize="14" Padding="5,0,0,0" Foreground="#FFFFFF"/>
  151. </StackPanel>
  152. <StackPanel Grid.Row="0" Orientation="Horizontal" HorizontalAlignment="Right" Margin="10,2,20,0">
  153. <Button Cursor="Hand" x:Name="btnLoginType" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Margin="0,0,10,0" Click="BtnLoginType_Click">
  154. <StackPanel Orientation="Horizontal">
  155. <Image Source="./Images/microLessonSystem_9.png"/>
  156. <TextBlock x:Name="txbLoginType" Text="未登录" FontSize="14" Padding="5,0,0,0" Foreground="#FFFFFF"/>
  157. </StackPanel>
  158. </Button>
  159. <Button Cursor="Hand" x:Name="btnShrink" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="BtnShrink_Click" Margin="8,0,8,0">
  160. <Image Source="./Images/microLessonSystem_19.png"/>
  161. </Button>
  162. <!--<Button Cursor="Hand" x:Name="btnEnlarge" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Margin="8,0,8,0">
  163. <Image Source="./Images/microLessonSystem_8.png"/>
  164. </Button>-->
  165. <Button Cursor="Hand" x:Name="btnDown" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="BtnDown_Click" >
  166. <Image Source="./Images/microLessonSystem_10.png"/>
  167. </Button>
  168. </StackPanel>
  169. <!--第二行-->
  170. <StackPanel Grid.Row="1" Orientation="Horizontal" Margin="10,0,0,5" HorizontalAlignment="Left">
  171. <Button Cursor="Hand" x:Name="btnScreenRecording" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="BtnScreenRecording_Click" Margin="30,0,0,0">
  172. <StackPanel Orientation="Vertical">
  173. <Image x:Name="ImgScreenRecording" Source="./Images/microLessonSystem_2.png"/>
  174. <Image x:Name="ImgScreenRecordingTwo" Source="./Images/microLessonSystem_3.png" Visibility="Collapsed"/>
  175. <TextBlock x:Name="TxbRecordScreenWord" Text="录屏" Padding="0,6,0,0" FontSize="14" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  176. </StackPanel>
  177. </Button>
  178. <Button Cursor="Hand" x:Name="btnScreenshot" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Margin="30,0,0,0" Click="BtnScreenshot_Click">
  179. <StackPanel Orientation="Vertical">
  180. <Image x:Name="ImgScreenshot" Source="./Images/microLessonSystem_12.png"/>
  181. <Image x:Name="ImgScreenshotTwo" Source="./Images/microLessonSystem_11.png" Visibility="Collapsed"/>
  182. <TextBlock Text="截图" Padding="0,6,0,0" FontSize="14" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  183. </StackPanel>
  184. </Button>
  185. <Button Cursor="Hand" x:Name="btnImport" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="BtnImport_Click" Margin="30,0,0,0">
  186. <StackPanel Orientation="Vertical">
  187. <Image x:Name="ImgImport" Source="./Images/microLessonSystem_6.png"/>
  188. <Image x:Name="ImgImportTwo" Source="./Images/microLessonSystem_7.png" Visibility="Collapsed"/>
  189. <TextBlock Text="导入" Padding="0,6,0,0" FontSize="14" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  190. </StackPanel>
  191. </Button>
  192. <Button Cursor="Hand" x:Name="BtnRecord" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Margin="100,0,0,0" Click="BtnRecord_Click">
  193. <StackPanel Orientation="Vertical">
  194. <Image x:Name="ImgRecord" Source="./Images/microLessonSystem_14.png"/>
  195. <Image x:Name="ImgRecordTwo" Source="./Images/microLessonSystem_13.png" Visibility="Collapsed"/>
  196. <TextBlock x:Name="TxbRecordingWord" Text="录制" Padding="0,6,0,0" FontSize="14" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  197. </StackPanel>
  198. </Button>
  199. <Button Cursor="Hand" x:Name="btnStop" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="BtnStop_Click" Margin="30,0,0,0">
  200. <StackPanel Orientation="Vertical">
  201. <Image x:Name="ImgStop" Source="./Images/microLessonSystem_21.png"/>
  202. <Image x:Name="ImgStopTwo" Source="./Images/microLessonSystem_20.png" Visibility="Collapsed"/>
  203. <TextBlock Text="停止" FontSize="14" Padding="0,6,0,0" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  204. </StackPanel>
  205. </Button>
  206. <TextBlock x:Name="txbTime" Text="" FontSize="20" Foreground="#FFFFFF" Margin="20,20,0,0"/>
  207. </StackPanel>
  208. <StackPanel Grid.Row="1" HorizontalAlignment="Center">
  209. <TextBlock x:Name="txbType" Text="" FontSize="20" Foreground="#FFFFFF" Margin="0,25,0,0"/>
  210. </StackPanel>
  211. <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,0,10,5">
  212. <Button Cursor="Hand" x:Name="btnAdd" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="BtnAdd_Click" Margin="0,0,30,0">
  213. <StackPanel Orientation="Vertical">
  214. <Image x:Name="ImgAdd" Source="./Images/microLessonSystem_25.png" Visibility="Visible"/>
  215. <Image x:Name="ImgAddTwo" Source="./Images/microLessonSystem_24.png" Visibility="Collapsed"/>
  216. <TextBlock Text="增加" FontSize="14" Padding="0,6,0,0" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  217. </StackPanel>
  218. </Button>
  219. <Button Cursor="Hand" x:Name="btnPrint" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Margin="0,0,30,0" Click="BtnPrint_Click">
  220. <StackPanel Orientation="Vertical">
  221. <Image x:Name="ImgPrint" Source="./Images/microLessonSystem_4.png" Visibility="Collapsed"/>
  222. <Image x:Name="ImgPrintTwo" Source="./Images/microLessonSystem_5.png" Visibility="Visible"/>
  223. <TextBlock Text="打印" FontSize="14" Padding="0,6,0,0" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  224. </StackPanel>
  225. </Button>
  226. <!--<Button Cursor="Hand" x:Name="btnUpload" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="BtnUpload_Click" Margin="0,0,30,0">
  227. <StackPanel Orientation="Vertical">
  228. <Image x:Name="ImgUpload" Source="./Images/microLessonSystem_15.png" Visibility="Collapsed"/>
  229. <Image x:Name="ImgUploadTwo" Source="./Images/microLessonSystem_16.png" Visibility="Visible"/>
  230. <TextBlock Text="上传" FontSize="14" Padding="0,6,0,0" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  231. </StackPanel>
  232. </Button>-->
  233. <Button Cursor="Hand" x:Name="btnUpload" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Margin="0,0,30,0" Click="BtnUpload_Click">
  234. <StackPanel Orientation="Vertical">
  235. <Image x:Name="ImgUpload" Source="./Images/microLessonSystem_22.png" Visibility="Collapsed"/>
  236. <Image x:Name="ImgUploadTwo" Source="./Images/microLessonSystem_1.png" Visibility="Visible"/>
  237. <TextBlock Text="我的" FontSize="14" Padding="0,6,0,0" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  238. </StackPanel>
  239. </Button>
  240. <Button Cursor="Hand" x:Name="btnSetUp" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Margin="0,0,30,0" Click="BtnSetUp_Click">
  241. <StackPanel Orientation="Vertical">
  242. <Image x:Name="ImgSetUp" Source="./Images/microLessonSystem_18.png" Visibility="Visible"/>
  243. <Image x:Name="ImgSetUpTwo" Source="./Images/microLessonSystem_17.png" Visibility="Collapsed"/>
  244. <TextBlock Text="设置" FontSize="14" Padding="0,6,0,0" Foreground="#FFFFFF" HorizontalAlignment="Center"/>
  245. </StackPanel>
  246. </Button>
  247. </StackPanel>
  248. </Grid>
  249. <!--主内容-->
  250. <Grid Grid.Row="1" x:Name="GridMain" Visibility="Visible">
  251. <ScrollViewer x:Name="scroMain" VerticalScrollBarVisibility="Visible">
  252. <Grid x:Name="gridM" Margin="0,0,0,0" Background="#FFFFFF" Visibility="Visible" Height="1780">
  253. <Grid>
  254. <Border Grid.Row="1" CornerRadius="5">
  255. <Grid x:Name="IMG" Margin="0,0,0,0">
  256. <Grid.Resources>
  257. <TransformGroup x:Key="Imageview">
  258. <ScaleTransform/>
  259. <TranslateTransform/>
  260. </TransformGroup>
  261. </Grid.Resources>
  262. <!--<ScrollViewer HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Disabled" Cursor="SizeAll"
  263. Margin="0,0,0,0" Focusable="False" x:Name="BackFrame">
  264. <ContentControl MouseLeftButtonDown="IMG1_MouseLeftButtonDown"
  265. MouseLeftButtonUp="IMG1_MouseLeftButtonUp"
  266. MouseMove="IMG1_MouseMove"
  267. MouseWheel="IMG1_MouseWheel" >
  268. </ContentControl>
  269. </ScrollViewer>-->
  270. <!--图片表框 -->
  271. <Rectangle x:Name="RectImgBorder" Cursor="SizeAll" Fill="#00000000" HorizontalAlignment="Left" Stroke="#2D8CF0" VerticalAlignment="Top" Width="300" Height="300" Visibility="Hidden" Margin="373,175,0,0" StrokeThickness="4" StrokeDashArray="4 4" SnapsToDevicePixels="True"/>
  272. <Image Name="imgCanvas" Height="0" VerticalAlignment="Top" HorizontalAlignment="Left" Stretch="Fill" MouseDown="PicEMap_MouseDown" RenderTransform="{StaticResource Imageview}" MouseRightButtonDown="imgCanvas_MouseRightButtonDown" MouseLeftButtonDown="imgCanvas_MouseLeftButtonDown" Focusable="True" MouseMove="imgCanvas_MouseMove" MouseUp="imgCanvas_MouseUp"/>
  273. <!--四个点 -->
  274. <Canvas>
  275. <Thumb x:Name="RectLeftUp" Cursor="SizeNWSE" HorizontalAlignment="Left" Height="20" VerticalAlignment="Top" Width="20" Visibility="Hidden" Canvas.Left="314" Canvas.Top="157" Background="White" BorderBrush="#2D8CF0" BorderThickness="2" DragDelta="RectRightUp_DragDelta" DragStarted="RectRightUp_DragStarted" DragCompleted="RectRightUp_DragCompleted"/>
  276. <Thumb x:Name="RectRightUp" Cursor="SizeNESW" HorizontalAlignment="Left" Height="20" VerticalAlignment="Top" Width="20" Visibility="Hidden" Canvas.Left="775" Canvas.Top="157" Background="White" BorderBrush="#2D8CF0" BorderThickness="2" DragDelta="RectRightUp_DragDelta" DragStarted="RectRightUp_DragStarted" DragCompleted="RectRightUp_DragCompleted"/>
  277. <Thumb x:Name="RectLeftDown" Cursor="SizeNESW" HorizontalAlignment="Left" Height="20" VerticalAlignment="Top" Width="20" Visibility="Hidden" Canvas.Left="314" Canvas.Top="508" Background="White" BorderBrush="#2D8CF0" BorderThickness="2" DragDelta="RectRightUp_DragDelta" DragStarted="RectRightUp_DragStarted" DragCompleted="RectRightUp_DragCompleted"/>
  278. <Thumb x:Name="RectRightDown" Cursor="SizeNWSE" HorizontalAlignment="Left" Height="20" VerticalAlignment="Top" Width="20" Visibility="Hidden" Canvas.Left="775" Canvas.Top="508" Background="White" BorderBrush="#2D8CF0" BorderThickness="2" DragDelta="RectRightUp_DragDelta" DragStarted="RectRightUp_DragStarted" DragCompleted="RectRightUp_DragCompleted"/>
  279. </Canvas>
  280. </Grid>
  281. </Border>
  282. </Grid>
  283. <Image x:Name="imgDocumentation" Visibility="Visible"/>
  284. <!--导入图片-->
  285. <!--<Button Cursor="Hand" x:Name="btnOk" Height="50" Width="50" Content="√" FontSize="26" Background="#2E8CF0" Foreground="#FFFFFF" Click="btnOk_Click" Visibility="Collapsed"/>-->
  286. <InkCanvas Grid.Row="0" x:Name="blackboard_canvas" Background="Transparent" Visibility="Collapsed" Grid.ColumnSpan="2" />
  287. <!--摄像头-->
  288. <!--<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">
  289. <aforge:VideoSourcePlayer x:Name="player" Height="124" Width="172" />
  290. </wfi:WindowsFormsHost>-->
  291. <!--<Image x:Name="imgLoad"
  292. Width="300"
  293. Height="300"
  294. gifLib:ImageBehavior.AnimatedSource="./Images/img_load.gif" VerticalAlignment="Top" Margin="0,200,0,0" Visibility="Visible"/>-->
  295. </Grid>
  296. </ScrollViewer>
  297. <Image x:Name="imgPlayerLeft" Width="172" Height="124" Source="./Images/microLessonSystem_17.png" HorizontalAlignment="Left" Margin="10,7,10,10" VerticalAlignment="Top" Visibility="Collapsed"/>
  298. <Image x:Name="imgPlayerRight" Width="172" Height="124" Source="./Images/microLessonSystem_17.png" HorizontalAlignment="Right" Margin="10,7,26,10" VerticalAlignment="Top" Visibility="Collapsed"/>
  299. <Image x:Name="imgPlayerLeftUnder" Width="172" Height="124" Source="./Images/microLessonSystem_17.png" HorizontalAlignment="Left" Margin="10,7,10,10" VerticalAlignment="Bottom" Visibility="Collapsed"/>
  300. <Image x:Name="imgPlayerRightUnder" Width="172" Height="124" Source="./Images/microLessonSystem_17.png" HorizontalAlignment="Right" Margin="10,7,26,10" VerticalAlignment="Bottom" Visibility="Collapsed"/>
  301. <Label Content="" Grid.Column="0" Height="2" Width="2" HorizontalAlignment="Left" VerticalAlignment="Top" Background="#FF0F0F0F" Margin="1,0,0,0"/>
  302. <Label Content="" Grid.Column="1" Height="2" Width="2" Background="#FF0F0F0F" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,0,16,0"/>
  303. <Label Content="" Grid.Column="0" Height="2" Width="2" Background="#FF0F0F0F" HorizontalAlignment="Left" VerticalAlignment="Bottom" Margin="1,0,0,0"/>
  304. <Label Content="" Grid.Column="1" Height="2" Width="2" Background="#FF0F0F0F" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="0,0,16,0"/>
  305. <!--<TextBlock x:Name="txbTime" Text="123456" FontSize="20" Foreground="#000000" Margin="0,0,0,10" HorizontalAlignment="Left" VerticalAlignment="Bottom"/>-->
  306. </Grid>
  307. <!--页码-->
  308. <Grid Grid.Row="1" x:Name="gridPage" Visibility="Collapsed">
  309. <StackPanel Grid.Row="0" Orientation="Horizontal" Background="Transparent" Width="180" HorizontalAlignment="Center"
  310. Height="30" Margin="0,0,0,0" Grid.Column="1" VerticalAlignment="Bottom">
  311. <Button Cursor="Hand" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}"
  312. x:Name="last_button"
  313. Width="60" Height="20"
  314. Click="last_button_Click">
  315. <Button.Content>
  316. <StackPanel>
  317. <Image Width="16" Height="12" Source=".\Images\class_p1.png" />
  318. </StackPanel>
  319. </Button.Content>
  320. </Button>
  321. <Grid Width="60" Background="Transparent">
  322. <Grid.RowDefinitions>
  323. <RowDefinition Height="311*"/>
  324. <RowDefinition Height="483*"/>
  325. </Grid.RowDefinitions>
  326. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,-12,0,0" Grid.Row="1" Background="Transparent">
  327. <StackPanel HorizontalAlignment="Center" Orientation="Horizontal" Background="Transparent">
  328. <TextBlock x:Name="txbCurrpage" Text="{Binding currpage}" TextAlignment="Center" FontSize="15"/>
  329. <TextBlock Text="/" TextAlignment="Center" FontSize="15"/>
  330. <TextBlock Text="{Binding pagenum}" TextAlignment="Center" FontSize="15"/>
  331. </StackPanel>
  332. </StackPanel>
  333. </Grid>
  334. <Button Cursor="Hand" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}"
  335. x:Name="next_btn" Background="Transparent"
  336. Width="60" Height="20"
  337. Click="next_btn_Click">
  338. <Button.Content>
  339. <StackPanel>
  340. <Image Width="16" Height="12" Source=".\Images\class_p2.png" />
  341. </StackPanel>
  342. </Button.Content>
  343. </Button>
  344. </StackPanel>
  345. </Grid>
  346. <!--设置-->
  347. <Grid Grid.Row="1" x:Name="gridSetUp" Background="#FFFFFF" Visibility="Collapsed" Width="1276">
  348. <Grid.RowDefinitions>
  349. <RowDefinition Height="90"/>
  350. <RowDefinition Height="70"/>
  351. <RowDefinition Height="50"/>
  352. <RowDefinition Height="70"/>
  353. <RowDefinition Height="70"/>
  354. <RowDefinition Height="70"/>
  355. <RowDefinition Height="70"/>
  356. <RowDefinition Height="*"/>
  357. </Grid.RowDefinitions>
  358. <StackPanel Grid.Row="0" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,30,0,0">
  359. <TextBlock Text=" 点阵笔" FontSize="16" Foreground="#2D8CF0" Width="80"/>
  360. <TextBlock x:Name="txbNotConnecteds" Text="未连接" FontSize="14" Foreground="#333333" Padding="10,0,0,0"/>
  361. </StackPanel>
  362. <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,0,0,0">
  363. <TextBlock Text="视频格式" FontSize="16" Foreground="#2D8CF0" Width="80"/>
  364. <RadioButton x:Name="rbnMP4" Cursor="Hand" Content="MP4" FontSize="14" Foreground="#333333" Margin="10,2,0,0" IsChecked="True"/>
  365. <RadioButton x:Name="rbnFLV" Cursor="Hand" Content="FLV" FontSize="14" Foreground="#333333" Margin="20,2,0,0"/>
  366. <RadioButton x:Name="rbnAVI" Cursor="Hand" Content="AVI" FontSize="14" Foreground="#333333" Margin="20,2,0,0"/>
  367. </StackPanel>
  368. <StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,0,0,0">
  369. <TextBlock Text="头像位置" FontSize="16" Foreground="#2D8CF0" Width="80"/>
  370. <RadioButton Cursor="Hand" x:Name="rbnRight" Content="右上" FontSize="14" Foreground="#333333" Margin="10,2,0,0" IsChecked="True"/>
  371. <RadioButton Cursor="Hand" x:Name="rbnRightUnder" Content="右下" FontSize="14" Foreground="#333333" Margin="20,2,0,0"/>
  372. <RadioButton Cursor="Hand" x:Name="rbnLeft" Content="左上" FontSize="14" Foreground="#333333" Margin="20,2,0,0" />
  373. <RadioButton Cursor="Hand" x:Name="rbnLeftUnder" Content="左下" FontSize="14" Foreground="#333333" Margin="20,2,0,0"/>
  374. </StackPanel>
  375. <StackPanel Grid.Row="3" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,0,0,0" Visibility="Collapsed">
  376. <TextBlock Text="视频声音" FontSize="16" Foreground="#2D8CF0" Width="80"/>
  377. <RadioButton x:Name="rbnY" Cursor="Hand" Content="有" FontSize="14" Foreground="#333333" Margin="10,2,0,0" IsChecked="True"/>
  378. <RadioButton x:Name="rbnN" Cursor="Hand" Content="无" FontSize="14" Foreground="#333333" Margin="20,2,0,0"/>
  379. </StackPanel>
  380. <StackPanel Grid.Row="3" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,0,0,0">
  381. <TextBlock x:Name="txbFilePath" Text="文件路径" FontSize="16" Width="80" Foreground="#2D8CF0" Padding="2,26,10,0"/>
  382. <!--输入框-->
  383. <Border Background="#CDD6E0" Width="525" Height="43" CornerRadius="3">
  384. <Label x:Name="txbStoragePath" Background="#FFFFFF" Content="D:\" FontSize="16" Foreground="#333333" Padding="5,12,2,2" Width="523" Height="42" BorderBrush="{x:Null}" BorderThickness="0"/>
  385. </Border>
  386. <!--浏览按钮-->
  387. <Button Cursor="Hand" x:Name="btnBrowse" Content="浏览" FontSize="18" Width="80" Height="43" Margin="18,0,0,0" Click="BtnBrowse_Click">
  388. <Button.Template>
  389. <ControlTemplate TargetType="{x:Type Button}">
  390. <Border
  391. BorderBrush="{TemplateBinding Control.BorderBrush}"
  392. BorderThickness="1"
  393. CornerRadius="2">
  394. <Border.Background>#EBEFF3</Border.Background>
  395. <ContentPresenter
  396. HorizontalAlignment="Center"
  397. VerticalAlignment="Center"
  398. Content="{TemplateBinding ContentControl.Content}" />
  399. </Border>
  400. </ControlTemplate>
  401. </Button.Template>
  402. </Button>
  403. </StackPanel>
  404. <StackPanel Grid.Row="4" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,30,0,0">
  405. <TextBlock Text=" 版本号" FontSize="16" Width="80" Foreground="#2D8CF0"/>
  406. <TextBlock x:Name="txbv" Text="V0.0.0" FontSize="16" Foreground="#333333" Padding="10,0,0,0"/>
  407. </StackPanel>
  408. <StackPanel Grid.Row="5" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,30,0,0">
  409. <TextBlock Text="版权所有" FontSize="16" Width="80" Foreground="#2D8CF0"/>
  410. <TextBlock Text="河南星火燎原软件科技有限公司" FontSize="14" Foreground="#333333" Padding="10,0,0,0"/>
  411. </StackPanel>
  412. <!--第四行 开始按钮-->
  413. <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">
  414. <Button.Template>
  415. <ControlTemplate TargetType="{x:Type Button}">
  416. <Border
  417. BorderBrush="{TemplateBinding Control.BorderBrush}"
  418. BorderThickness="1"
  419. CornerRadius="2">
  420. <Border.Background>#2D8CF0</Border.Background>
  421. <ContentPresenter
  422. HorizontalAlignment="Center"
  423. VerticalAlignment="Center"
  424. Content="{TemplateBinding ContentControl.Content}" />
  425. </Border>
  426. </ControlTemplate>
  427. </Button.Template>
  428. </Button>
  429. </Grid>
  430. <!--上传-->
  431. <Grid Grid.Row="1" x:Name="gridUpload" Visibility="Hidden">
  432. <Border Background="#EFF1F8">
  433. <Grid Background="#FFFFFF" Margin="0,0,0,0">
  434. <!--分4行-->
  435. <Grid.RowDefinitions>
  436. <RowDefinition Height="*"/>
  437. <RowDefinition Height="30"/>
  438. </Grid.RowDefinitions>
  439. <!--第二行 内容-->
  440. <Grid Grid.Row="0" Margin="0,0,0,0">
  441. <Grid.RowDefinitions>
  442. <RowDefinition Height="45"/>
  443. <RowDefinition Height="*"/>
  444. </Grid.RowDefinitions>
  445. <UniformGrid x:Name="uniStatisticsByTitle"
  446. Grid.Row="0"
  447. Margin="0,0,0,0"
  448. Background="#E6F0FF"
  449. Columns="5"
  450. Rows="1">
  451. <TextBlock
  452. HorizontalAlignment="Center"
  453. VerticalAlignment="Center"
  454. FontSize="16"
  455. Text="序号" />
  456. <TextBlock
  457. HorizontalAlignment="Center"
  458. VerticalAlignment="Center"
  459. FontSize="16"
  460. Text="视频名称"/>
  461. <!--<TextBlock
  462. HorizontalAlignment="Center"
  463. VerticalAlignment="Center"
  464. FontSize="15"
  465. Text="视频时长" Foreground="White" />-->
  466. <TextBlock
  467. HorizontalAlignment="Center"
  468. VerticalAlignment="Center"
  469. FontSize="16"
  470. Text="视频大小"/>
  471. <TextBlock
  472. HorizontalAlignment="Center"
  473. VerticalAlignment="Center"
  474. FontSize="16"
  475. Text="日期"/>
  476. <TextBlock
  477. HorizontalAlignment="Center"
  478. VerticalAlignment="Center"
  479. FontSize="16"
  480. Text="操作"/>
  481. </UniformGrid>
  482. <ListBox Grid.Row="1" Margin="0,0,0,0"
  483. x:Name="listView1"
  484. BorderThickness="0"
  485. FontSize="20"
  486. ItemContainerStyle="{StaticResource ListBoxItemContainerStyle}"
  487. ItemTemplate="{StaticResource TongjiItem}"
  488. ItemsSource="{Binding menuList}"
  489. ScrollViewer.HorizontalScrollBarVisibility="Disabled"
  490. ScrollViewer.VerticalScrollBarVisibility="Disabled"/>
  491. </Grid>
  492. <StackPanel Grid.Row="3" x:Name="stpUp" Orientation="Horizontal" Background="Transparent" Width="180" HorizontalAlignment="Center"
  493. Height="30" Margin="0,0,0,0" Grid.Column="1" VerticalAlignment="Bottom">
  494. <Button Cursor="Hand" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}"
  495. x:Name="btnLastPage"
  496. Width="60" Height="20"
  497. Click="BtnLastPage_Click">
  498. <Button.Content>
  499. <StackPanel>
  500. <Image Width="16" Height="12" Source=".\Images\class_p1.png" />
  501. </StackPanel>
  502. </Button.Content>
  503. </Button>
  504. <Grid Width="60" Background="Transparent">
  505. <Grid.RowDefinitions>
  506. <RowDefinition Height="311*"/>
  507. <RowDefinition Height="483*"/>
  508. </Grid.RowDefinitions>
  509. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,-12,0,0" Grid.Row="1" Background="Transparent">
  510. <StackPanel HorizontalAlignment="Center" Orientation="Horizontal" Background="Transparent">
  511. <TextBlock x:Name="txbCurrpageTwo" TextAlignment="Center" FontSize="15"/>
  512. <TextBlock Text="/" TextAlignment="Center" FontSize="15"/>
  513. <TextBlock x:Name="txbPageNumTwo" TextAlignment="Center" FontSize="15"/>
  514. </StackPanel>
  515. </StackPanel>
  516. </Grid>
  517. <Button Cursor="Hand" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}"
  518. x:Name="btnNextPage" Background="Transparent"
  519. Width="60" Height="20"
  520. Click="BtnNextPage_Click">
  521. <Button.Content>
  522. <StackPanel>
  523. <Image Width="16" Height="12" Source=".\Images\class_p2.png" />
  524. </StackPanel>
  525. </Button.Content>
  526. </Button>
  527. </StackPanel>
  528. </Grid>
  529. </Border>
  530. </Grid>
  531. <Grid Grid.Row="2" Background="#EFF1F8" Margin="0,0,0,0">
  532. <StackPanel Orientation="Horizontal" Margin="0,0,0,0">
  533. <TextBlock Text="颜色:" FontSize="14" Padding="10,10,0,0"/>
  534. <Button Cursor="Hand" x:Name="btnWhite" Background="#FFFFFF" Width="20" Height="20" Click="BtnWhite_Click" Margin="0,2,0,0" Visibility="Collapsed"/>
  535. <Button Cursor="Hand" x:Name="btnRed" Background="#FF0000" Width="20" Height="20" Margin="5,-15,0,0" Click="BtnRed_Click">
  536. <Image x:Name="imgRed" Source=".\Images\microLessonSystem_999.png" Width="12" Visibility="Visible"/>
  537. </Button>
  538. <Button Cursor="Hand" x:Name="btnGray" Background="#333333" Width="20" Height="20" Margin="5,-15,0,0" Click="BtnGray_Click">
  539. <Image x:Name="imgGray" Source=".\Images\microLessonSystem_999.png" Width="12" Visibility="Collapsed"/>
  540. </Button>
  541. <Button Cursor="Hand" x:Name="btnCyanBlue" Background="#63D600" Width="20" Height="20" Margin="5,-15,0,0" Click="BtnCyanBlue_Click">
  542. <Image x:Name="imgCyanBlue" Source=".\Images\microLessonSystem_999.png" Width="12" Visibility="Collapsed"/>
  543. </Button>
  544. <Button Cursor="Hand" x:Name="btnYellow" Background="#FFBC00" Width="20" Height="20" Margin="5,-15,0,0" Click="BtnYellow_Click">
  545. <Image x:Name="imgYellow" Source=".\Images\microLessonSystem_999.png" Width="12" Visibility="Collapsed"/>
  546. </Button>
  547. <Button Cursor="Hand" x:Name="btnBlue" Background="#00B4FC" Width="20" Height="20" Margin="5,-15,0,0" Click="BtnBlue_Click">
  548. <Image x:Name="imgBlue" Source=".\Images\microLessonSystem_999.png" Width="12" Visibility="Collapsed"/>
  549. </Button>
  550. <TextBlock Text="粗细:" FontSize="14" Padding="15,5,0,0" Margin="5,5,0,0"/>
  551. <RadioButton Cursor="Hand" x:Name="rbnFine" Content="细" FontSize="14" Margin="0,10,0,0" IsChecked="True" Click="RbnFine_Click"/>
  552. <RadioButton Cursor="Hand" x:Name="rbnIn" Content="中" FontSize="14" Margin="5,10,0,0" Click="RbnIn_Click"/>
  553. <RadioButton Cursor="Hand" x:Name="rbnCrude" Content="粗" FontSize="14" Margin="5,10,0,0" Click="RbnCrude_Click"/>
  554. <StackPanel Orientation="Horizontal">
  555. <TextBlock Text="摄像头:" FontSize="14" Padding="15,10,0,0"/>
  556. <RadioButton Cursor="Hand" x:Name="rbnOpen" Content="开" FontSize="14" Margin="0,10,0,0" Click="RbnOpen_Click"/>
  557. <RadioButton Cursor="Hand" x:Name="rbnTurnOff" Content="关" FontSize="14" Margin="5,10,0,0" IsChecked="True" Click="RbnTurnOff_Click"/>
  558. </StackPanel>
  559. </StackPanel>
  560. <StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,5,10,0">
  561. <TextBlock Text="智能笔状态:" FontSize="14" Padding="0,5,0,0"/>
  562. <TextBlock x:Name="txbNotConnected" Text="未连接" FontSize="14" Padding="0,5,5,0"/>
  563. </StackPanel>
  564. </Grid>
  565. </Grid>
  566. </Window>