OverView.xaml 1.7 KB

123456789101112131415161718192021222324252627282930
  1. <UserControl x:Class="Venus_MainPages.Views.OverView"
  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:Venus_MainPages.Views"
  7. mc:Ignorable="d"
  8. xmlns:prism="http://prismlibrary.com/"
  9. prism:ViewModelLocator.AutoWireViewModel="True"
  10. xmlns:ctrls="clr-namespace:Venus_Themes.UserControls;assembly=Venus_Themes"
  11. d:DesignHeight="450" d:DesignWidth="800">
  12. <Canvas>
  13. <ctrls:FlowPipeValve Height="10" Name="flv" Canvas.Left="190" Canvas.Top="75"/>
  14. <ctrls:FlowPipe Height="10" Name="fl1" Width="100" Canvas.Left="118" Canvas.Top="120"/>
  15. <ctrls:FlowPipe Height="10" Name="fl2" Width="100" Canvas.Left="315.3" Canvas.Top="120"/>
  16. <ctrls:FlowPipe Height="10" Name="fl3" Width="100" Canvas.Left="360" Canvas.Top="170" RenderTransformOrigin="0.5,0.5" FCornerRadius="0,0,0,5">
  17. <ctrls:FlowPipe.RenderTransform>
  18. <TransformGroup>
  19. <RotateTransform Angle="90"/>
  20. </TransformGroup>
  21. </ctrls:FlowPipe.RenderTransform>
  22. </ctrls:FlowPipe>
  23. <ctrls:FlowPipe Height="10" Name="fl4" Width="100" Canvas.Left="407.3" Canvas.Top="218" />
  24. <Button Width="100" Height="20" Click="Button_Click" Content="流动" Canvas.Left="115" Canvas.Top="225"/>
  25. <Button Width="100" Height="20" Click="Button_Click_1" Content="反向" Canvas.Left="250" Canvas.Top="225"/>
  26. </Canvas>
  27. </UserControl>