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

PracticeWindow.xaml 818B

12345678910111213141516171819
  1. <Window x:Class="XHWK.WKTool.PracticeWindow"
  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. mc:Ignorable="d"
  7. Title="PracticeWindow" Width="1280"
  8. Height="800"
  9. AllowsTransparency="True"
  10. Background="Transparent"
  11. Opacity="1"
  12. ShowInTaskbar="False"
  13. WindowStyle="None">
  14. <Grid>
  15. <Image x:Name="ImgCanvas"/>
  16. <InkCanvas Grid.Row="0" x:Name="BlackboardCanvas" PreviewMouseRightButtonDown="blackboard_canvas_PreviewMouseRightButtonDown" Background="#021B1919" Visibility="Visible" Grid.ColumnSpan="2"/>
  17. </Grid>
  18. </Window>