| 123456789101112131415161718 | <UserControl x:Class="PunkHPX8_MainPages.Views.ProcessChamberView"             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"              xmlns:d="http://schemas.microsoft.com/expression/blend/2008"              xmlns:local="clr-namespace:PunkHPX8_MainPages.Views"             mc:Ignorable="d"                        xmlns:userControls="clr-namespace:PunkHPX8_Themes.UserControls;assembly=PunkHPX8_Themes"                xmlns:prism="http://prismlibrary.com/"             prism:ViewModelLocator.AutoWireViewModel="True"             d:DesignHeight="320" d:DesignWidth="1800" IsVisibleChanged="UserControl_IsVisibleChanged">    <Canvas>        <userControls:ProcessControl Width="1800" Height="300" LoaderGantryPosition="{Binding LoaderTransporterGantryPosition}"                                     ProcessGantryPosition="{Binding ProcessTransporterGantryPosition}" LoaderVerticalPosition="{Binding LoaderTransporterElevatorPosition}"                                      ProcessVerticalPosition="{Binding ProcessTransporterElevatorPosition}" ControlLoad="{Binding ProcessControlLoaded}"/>    </Canvas></UserControl>
 |