星火微课系统客户端
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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  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}"
  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">
  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,6,0,0" 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="10,10,10,0">
  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" 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. </Grid>
  306. <!--页码-->
  307. <Grid Grid.Row="1" x:Name="gridPage" Visibility="Collapsed">
  308. <StackPanel Grid.Row="0" Orientation="Horizontal" Background="Transparent" Width="180" HorizontalAlignment="Center"
  309. Height="30" Margin="0,0,0,0" Grid.Column="1" VerticalAlignment="Bottom">
  310. <Button Cursor="Hand" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}"
  311. x:Name="last_button"
  312. Width="60" Height="20"
  313. Click="last_button_Click">
  314. <Button.Content>
  315. <StackPanel>
  316. <Image Width="16" Height="12" Source=".\Images\class_p1.png" />
  317. </StackPanel>
  318. </Button.Content>
  319. </Button>
  320. <Grid Width="60" Background="Transparent">
  321. <Grid.RowDefinitions>
  322. <RowDefinition Height="311*"/>
  323. <RowDefinition Height="483*"/>
  324. </Grid.RowDefinitions>
  325. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,-12,0,0" Grid.Row="1" Background="Transparent">
  326. <StackPanel HorizontalAlignment="Center" Orientation="Horizontal" Background="Transparent">
  327. <TextBlock x:Name="txbCurrpage" Text="{Binding currpage}" TextAlignment="Center" FontSize="15"/>
  328. <TextBlock Text="/" TextAlignment="Center" FontSize="15"/>
  329. <TextBlock Text="{Binding pagenum}" TextAlignment="Center" FontSize="15"/>
  330. </StackPanel>
  331. </StackPanel>
  332. </Grid>
  333. <Button Cursor="Hand" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}"
  334. x:Name="next_btn" Background="Transparent"
  335. Width="60" Height="20"
  336. Click="next_btn_Click">
  337. <Button.Content>
  338. <StackPanel>
  339. <Image Width="16" Height="12" Source=".\Images\class_p2.png" />
  340. </StackPanel>
  341. </Button.Content>
  342. </Button>
  343. </StackPanel>
  344. </Grid>
  345. <!--设置-->
  346. <Grid Grid.Row="1" x:Name="gridSetUp" Background="#FFFFFF" Visibility="Collapsed" Width="1276">
  347. <Grid.RowDefinitions>
  348. <RowDefinition Height="90"/>
  349. <RowDefinition Height="70"/>
  350. <RowDefinition Height="50"/>
  351. <RowDefinition Height="70"/>
  352. <RowDefinition Height="70"/>
  353. <RowDefinition Height="70"/>
  354. <RowDefinition Height="70"/>
  355. <RowDefinition Height="*"/>
  356. </Grid.RowDefinitions>
  357. <StackPanel Grid.Row="0" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,30,0,0">
  358. <TextBlock Text=" 点阵笔" FontSize="16" Foreground="#2D8CF0" Width="80"/>
  359. <TextBlock x:Name="txbNotConnecteds" Text="未连接" FontSize="14" Foreground="#333333" Padding="10,0,0,0"/>
  360. </StackPanel>
  361. <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,0,0,0">
  362. <TextBlock Text="视频格式" FontSize="16" Foreground="#2D8CF0" Width="80"/>
  363. <RadioButton x:Name="rbnMP4" Cursor="Hand" Content="MP4" FontSize="14" Foreground="#333333" Margin="10,2,0,0" IsChecked="True"/>
  364. <RadioButton x:Name="rbnFLV" Cursor="Hand" Content="FLV" FontSize="14" Foreground="#333333" Margin="20,2,0,0"/>
  365. <RadioButton x:Name="rbnAVI" Cursor="Hand" Content="AVI" FontSize="14" Foreground="#333333" Margin="20,2,0,0"/>
  366. </StackPanel>
  367. <StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,0,0,0">
  368. <TextBlock Text="头像位置" FontSize="16" Foreground="#2D8CF0" Width="80"/>
  369. <RadioButton Cursor="Hand" x:Name="rbnRight" Content="右上" FontSize="14" Foreground="#333333" Margin="10,2,0,0" IsChecked="True"/>
  370. <RadioButton Cursor="Hand" x:Name="rbnRightUnder" Content="右下" FontSize="14" Foreground="#333333" Margin="20,2,0,0"/>
  371. <RadioButton Cursor="Hand" x:Name="rbnLeft" Content="左上" FontSize="14" Foreground="#333333" Margin="20,2,0,0" />
  372. <RadioButton Cursor="Hand" x:Name="rbnLeftUnder" Content="左下" FontSize="14" Foreground="#333333" Margin="20,2,0,0"/>
  373. </StackPanel>
  374. <StackPanel Grid.Row="3" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,0,0,0" Visibility="Collapsed">
  375. <TextBlock Text="视频声音" FontSize="16" Foreground="#2D8CF0" Width="80"/>
  376. <RadioButton x:Name="rbnY" Cursor="Hand" Content="有" FontSize="14" Foreground="#333333" Margin="10,2,0,0" IsChecked="True"/>
  377. <RadioButton x:Name="rbnN" Cursor="Hand" Content="无" FontSize="14" Foreground="#333333" Margin="20,2,0,0"/>
  378. </StackPanel>
  379. <StackPanel Grid.Row="3" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,0,0,0">
  380. <TextBlock x:Name="txbFilePath" Text="文件路径" FontSize="16" Width="80" Foreground="#2D8CF0" Padding="2,26,10,0"/>
  381. <!--输入框-->
  382. <Border Background="#CDD6E0" Width="525" Height="43" CornerRadius="3">
  383. <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"/>
  384. </Border>
  385. <!--浏览按钮-->
  386. <Button Cursor="Hand" x:Name="btnBrowse" Content="浏览" FontSize="18" Width="80" Height="43" Margin="18,0,0,0" Click="BtnBrowse_Click">
  387. <Button.Template>
  388. <ControlTemplate TargetType="{x:Type Button}">
  389. <Border
  390. BorderBrush="{TemplateBinding Control.BorderBrush}"
  391. BorderThickness="1"
  392. CornerRadius="2">
  393. <Border.Background>#EBEFF3</Border.Background>
  394. <ContentPresenter
  395. HorizontalAlignment="Center"
  396. VerticalAlignment="Center"
  397. Content="{TemplateBinding ContentControl.Content}" />
  398. </Border>
  399. </ControlTemplate>
  400. </Button.Template>
  401. </Button>
  402. </StackPanel>
  403. <StackPanel Grid.Row="4" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,30,0,0">
  404. <TextBlock Text=" 版本号" FontSize="16" Width="80" Foreground="#2D8CF0"/>
  405. <TextBlock x:Name="txbv" Text="V0.0.0" FontSize="16" Foreground="#333333" Padding="10,0,0,0"/>
  406. </StackPanel>
  407. <StackPanel Grid.Row="5" Orientation="Horizontal" HorizontalAlignment="Left" Margin="30,30,0,0">
  408. <TextBlock Text="版权所有" FontSize="16" Width="80" Foreground="#2D8CF0"/>
  409. <TextBlock Text="河南星火燎原软件科技有限公司" FontSize="14" Foreground="#333333" Padding="10,0,0,0"/>
  410. </StackPanel>
  411. <!--第四行 开始按钮-->
  412. <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">
  413. <Button.Template>
  414. <ControlTemplate TargetType="{x:Type Button}">
  415. <Border
  416. BorderBrush="{TemplateBinding Control.BorderBrush}"
  417. BorderThickness="1"
  418. CornerRadius="2">
  419. <Border.Background>#2D8CF0</Border.Background>
  420. <ContentPresenter
  421. HorizontalAlignment="Center"
  422. VerticalAlignment="Center"
  423. Content="{TemplateBinding ContentControl.Content}" />
  424. </Border>
  425. </ControlTemplate>
  426. </Button.Template>
  427. </Button>
  428. </Grid>
  429. <!--上传-->
  430. <Grid Grid.Row="1" x:Name="gridUpload" Visibility="Collapsed">
  431. <Border Width="1276" Background="#EFF1F8">
  432. <Grid Width="1236" Background="#FFFFFF" Margin="0,0,0,0">
  433. <!--分4行-->
  434. <Grid.RowDefinitions>
  435. <RowDefinition Height="*"/>
  436. <RowDefinition Height="30"/>
  437. </Grid.RowDefinitions>
  438. <!--第二行 内容-->
  439. <Grid Grid.Row="0" Margin="0,0,0,0">
  440. <Grid.RowDefinitions>
  441. <RowDefinition Height="45"/>
  442. <RowDefinition Height="*"/>
  443. </Grid.RowDefinitions>
  444. <UniformGrid x:Name="uniStatisticsByTitle"
  445. Grid.Row="0"
  446. Margin="0,0,0,0"
  447. Background="#E6F0FF"
  448. Columns="5"
  449. Rows="1">
  450. <TextBlock
  451. HorizontalAlignment="Center"
  452. VerticalAlignment="Center"
  453. FontSize="16"
  454. Text="序号" />
  455. <TextBlock
  456. HorizontalAlignment="Center"
  457. VerticalAlignment="Center"
  458. FontSize="16"
  459. Text="视频名称"/>
  460. <!--<TextBlock
  461. HorizontalAlignment="Center"
  462. VerticalAlignment="Center"
  463. FontSize="15"
  464. Text="视频时长" Foreground="White" />-->
  465. <TextBlock
  466. HorizontalAlignment="Center"
  467. VerticalAlignment="Center"
  468. FontSize="16"
  469. Text="视频大小"/>
  470. <TextBlock
  471. HorizontalAlignment="Center"
  472. VerticalAlignment="Center"
  473. FontSize="16"
  474. Text="日期"/>
  475. <TextBlock
  476. HorizontalAlignment="Center"
  477. VerticalAlignment="Center"
  478. FontSize="16"
  479. Text="操作"/>
  480. </UniformGrid>
  481. <ListBox Grid.Row="1" Margin="0,0,0,0"
  482. x:Name="listView1"
  483. BorderThickness="0"
  484. FontSize="20"
  485. ItemContainerStyle="{StaticResource ListBoxItemContainerStyle}"
  486. ItemTemplate="{StaticResource TongjiItem}"
  487. ItemsSource="{Binding menuList}"
  488. ScrollViewer.HorizontalScrollBarVisibility="Disabled"
  489. ScrollViewer.VerticalScrollBarVisibility="Disabled"/>
  490. </Grid>
  491. <StackPanel Grid.Row="3" x:Name="stpUp" Orientation="Horizontal" Background="Transparent" Width="180" HorizontalAlignment="Center"
  492. Height="30" Margin="0,0,0,0" Grid.Column="1" VerticalAlignment="Bottom">
  493. <Button Cursor="Hand" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}"
  494. x:Name="btnLastPage"
  495. Width="60" Height="20"
  496. Click="BtnLastPage_Click">
  497. <Button.Content>
  498. <StackPanel>
  499. <Image Width="16" Height="12" Source=".\Images\class_p1.png" />
  500. </StackPanel>
  501. </Button.Content>
  502. </Button>
  503. <Grid Width="60" Background="Transparent">
  504. <Grid.RowDefinitions>
  505. <RowDefinition Height="311*"/>
  506. <RowDefinition Height="483*"/>
  507. </Grid.RowDefinitions>
  508. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,-12,0,0" Grid.Row="1" Background="Transparent">
  509. <StackPanel HorizontalAlignment="Center" Orientation="Horizontal" Background="Transparent">
  510. <TextBlock x:Name="txbCurrpageTwo" TextAlignment="Center" FontSize="15"/>
  511. <TextBlock Text="/" TextAlignment="Center" FontSize="15"/>
  512. <TextBlock x:Name="txbPageNumTwo" TextAlignment="Center" FontSize="15"/>
  513. </StackPanel>
  514. </StackPanel>
  515. </Grid>
  516. <Button Cursor="Hand" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}"
  517. x:Name="btnNextPage" Background="Transparent"
  518. Width="60" Height="20"
  519. Click="BtnNextPage_Click">
  520. <Button.Content>
  521. <StackPanel>
  522. <Image Width="16" Height="12" Source=".\Images\class_p2.png" />
  523. </StackPanel>
  524. </Button.Content>
  525. </Button>
  526. </StackPanel>
  527. </Grid>
  528. </Border>
  529. </Grid>
  530. <Grid Grid.Row="2" Background="#EFF1F8" Margin="0,0,0,0">
  531. <StackPanel Orientation="Horizontal" Margin="0,0,0,0">
  532. <TextBlock Text="颜色:" FontSize="14" Padding="10,10,0,0"/>
  533. <Button Cursor="Hand" x:Name="btnWhite" Background="#FFFFFF" Width="20" Height="20" Click="BtnWhite_Click" Margin="0,2,0,0" Visibility="Collapsed"/>
  534. <Button Cursor="Hand" x:Name="btnRed" Background="#FF0000" Width="20" Height="20" Margin="5,-15,0,0" Click="BtnRed_Click">
  535. <Image x:Name="imgRed" Source=".\Images\microLessonSystem_999.png" Width="12" Visibility="Visible"/>
  536. </Button>
  537. <Button Cursor="Hand" x:Name="btnGray" Background="#333333" Width="20" Height="20" Margin="5,-15,0,0" Click="BtnGray_Click">
  538. <Image x:Name="imgGray" Source=".\Images\microLessonSystem_999.png" Width="12" Visibility="Collapsed"/>
  539. </Button>
  540. <Button Cursor="Hand" x:Name="btnCyanBlue" Background="#63D600" Width="20" Height="20" Margin="5,-15,0,0" Click="BtnCyanBlue_Click">
  541. <Image x:Name="imgCyanBlue" Source=".\Images\microLessonSystem_999.png" Width="12" Visibility="Collapsed"/>
  542. </Button>
  543. <Button Cursor="Hand" x:Name="btnYellow" Background="#FFBC00" Width="20" Height="20" Margin="5,-15,0,0" Click="BtnYellow_Click">
  544. <Image x:Name="imgYellow" Source=".\Images\microLessonSystem_999.png" Width="12" Visibility="Collapsed"/>
  545. </Button>
  546. <Button Cursor="Hand" x:Name="btnBlue" Background="#00B4FC" Width="20" Height="20" Margin="5,-15,0,0" Click="BtnBlue_Click">
  547. <Image x:Name="imgBlue" Source=".\Images\microLessonSystem_999.png" Width="12" Visibility="Collapsed"/>
  548. </Button>
  549. <TextBlock Text="粗细:" FontSize="14" Padding="15,5,0,0" Margin="5,5,0,0"/>
  550. <RadioButton Cursor="Hand" x:Name="rbnFine" Content="细" FontSize="14" Margin="0,10,0,0" IsChecked="True" Click="RbnFine_Click"/>
  551. <RadioButton Cursor="Hand" x:Name="rbnIn" Content="中" FontSize="14" Margin="5,10,0,0" Click="RbnIn_Click"/>
  552. <RadioButton Cursor="Hand" x:Name="rbnCrude" Content="粗" FontSize="14" Margin="5,10,0,0" Click="RbnCrude_Click"/>
  553. <StackPanel Orientation="Horizontal">
  554. <TextBlock Text="摄像头:" FontSize="14" Padding="15,10,0,0"/>
  555. <RadioButton Cursor="Hand" x:Name="rbnOpen" Content="开" FontSize="14" Margin="0,10,0,0" Click="RbnOpen_Click"/>
  556. <RadioButton Cursor="Hand" x:Name="rbnTurnOff" Content="关" FontSize="14" Margin="5,10,0,0" IsChecked="True" Click="RbnTurnOff_Click"/>
  557. </StackPanel>
  558. </StackPanel>
  559. <StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,5,10,0">
  560. <TextBlock Text="智能笔状态:" FontSize="14" Padding="0,5,0,0"/>
  561. <TextBlock x:Name="txbNotConnected" Text="未连接" FontSize="14" Padding="0,5,5,0"/>
  562. </StackPanel>
  563. </Grid>
  564. </Grid>
  565. </Window>