ModuleView.xaml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <UserControl x:Class="FlowChartModule.Views.ModuleView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:FlowChartModule.Views"
  7. PreviewMouseWheel="Window_PreviewMouseWheel"
  8. mc:Ignorable="d"
  9. d:DesignHeight="450"
  10. d:DesignWidth="800">
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="30" />
  14. <RowDefinition Height="*"/>
  15. </Grid.RowDefinitions>
  16. <StackPanel Orientation="Horizontal"
  17. Background="White">
  18. <TextBlock Text="{Binding Draw_Module.CurrentStatus}" Width="100" Foreground="Green"/>
  19. <Button Content="保存"
  20. Width="60"
  21. Margin="2"
  22. Command="{Binding SaveDataCommand}"
  23. Foreground="White" />
  24. <Button Content="打开"
  25. Width="60"
  26. Margin="2"
  27. Command="{Binding OpenDataCommand}"
  28. Foreground="White" />
  29. <Button Content="清除"
  30. Width="60"
  31. Margin="2"
  32. Command="{Binding ClearDataCommand}"
  33. Foreground="White" />
  34. <Button Content="运行"
  35. Width="60"
  36. Margin="2"
  37. Command="{Binding RunProgramsCommand}"
  38. Foreground="White" />
  39. <Button Content="停止"
  40. Width="60"
  41. Margin="2"
  42. Command="{Binding StopProgramsCommand}"
  43. Foreground="White" />
  44. </StackPanel>
  45. <Canvas x:Name="ParentCanvasGrid"
  46. Grid.Row="1"
  47. MouseLeftButtonDown="ParentCanvasGrid_MouseLeftButtonDown"
  48. MouseMove="ParentCanvasGrid_MouseMove"
  49. ClipToBounds="True"
  50. MouseUp="ModuleView_MouseUp">
  51. <Canvas x:Name="DrawingContainer"
  52. Background="Black"
  53. Width="20000"
  54. Height="20000"
  55. AllowDrop="True">
  56. <Canvas.RenderTransform>
  57. <TranslateTransform x:Name="Pantransform" />
  58. </Canvas.RenderTransform>
  59. </Canvas>
  60. </Canvas>
  61. </Grid>
  62. </UserControl>