ProcessChamberView.xaml 1.3 KB

123456789101112131415161718
  1. <UserControl x:Class="CyberX8_MainPages.Views.ProcessChamberView"
  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:CyberX8_MainPages.Views"
  7. mc:Ignorable="d"
  8. xmlns:userControls="clr-namespace:CyberX8_Themes.UserControls;assembly=CyberX8_Themes"
  9. xmlns:prism="http://prismlibrary.com/"
  10. prism:ViewModelLocator.AutoWireViewModel="True"
  11. d:DesignHeight="320" d:DesignWidth="1800" IsVisibleChanged="UserControl_IsVisibleChanged">
  12. <Canvas>
  13. <userControls:ProcessControl Width="1800" Height="300" LoaderGantryPosition="{Binding LoaderTransporterGantryPosition}"
  14. ProcessGantryPosition="{Binding ProcessTransporterGantryPosition}" LoaderVerticalPosition="{Binding LoaderTransporterElevatorPosition}"
  15. ProcessVerticalPosition="{Binding ProcessTransporterElevatorPosition}" ControlLoad="{Binding ProcessControlLoaded}"/>
  16. </Canvas>
  17. </UserControl>