123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <UserControl x:Class="PunkHPX8_MainPages.Views.PlatingCellSetupView"
- 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"
- xmlns:prism="http://prismlibrary.com/"
- xmlns:UserControls="clr-namespace:PunkHPX8_Themes.UserControls;assembly=PunkHPX8_Themes"
- prism:ViewModelLocator.AutoWireViewModel="True"
- mc:Ignorable="d" Name="self"
- d:DesignHeight="600" d:DesignWidth="1500">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="200"/>
- <RowDefinition Height="200"/>
- <RowDefinition Height="200"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="500"></ColumnDefinition>
- <ColumnDefinition Width="500"></ColumnDefinition>
- <ColumnDefinition Width="500"></ColumnDefinition>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <Grid Grid.Row="0" Grid.Column="0">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="380"></ColumnDefinition>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <UserControls:SrdStationPositionControl HorizontalAlignment="Center" Margin="10,0,0,0" VerticalAlignment="Center" Grid.ColumnSpan="2" Width="430" Height="175"
- ModuleTitle="{Binding PlatingCell1_2VerticalName}"
- ModuleName="{Binding PlatingCell1_2VerticalName}"
- CurrentPosition="{Binding PlatingCell1_2VerticalMotionData.MotorPosition}"
- Torque="{Binding PlatingCell1_2VerticalMotionData.Torque}"
- CurrentStation="{Binding PlatingCell1_2VerticalCurrentStation}"
- Unit="mm"
- />
- </Grid>
- <Grid Grid.Row="0" Grid.Column="2">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="380"></ColumnDefinition>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <UserControls:SrdStationPositionControl HorizontalAlignment="Center" Margin="10,0,0,0" VerticalAlignment="Center" Grid.ColumnSpan="2" Width="430" Height="175"
- ModuleTitle="{Binding PlatingCell3_4VerticalName}"
- ModuleName="{Binding PlatingCell3_4VerticalName}"
- CurrentPosition="{Binding PlatingCell3_4VerticalMotionData.MotorPosition}"
- Torque="{Binding PlatingCell3_4VerticalMotionData.Torque}"
- CurrentStation="{Binding PlatingCell3_4VerticalCurrentStation}"
- Unit="mm"
- />
- </Grid>
- <Grid Grid.Row="1" Grid.Column="0">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="380"></ColumnDefinition>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <UserControls:SrdStationPositionControl HorizontalAlignment="Center" Margin="10,0,0,0" VerticalAlignment="Center" Grid.ColumnSpan="2" Width="430" Height="175"
- ModuleTitle="{Binding PlatingCell1RotationName}"
- ModuleName="{Binding PlatingCell1RotationName}"
- CurrentPosition="{Binding PlatingCell1RotationMotionData.MotorPosition}"
- Torque="{Binding PlatingCell1RotationMotionData.Torque}"
- CurrentStation="{Binding PlatingCell1RotationCurrentStation}"
- Unit="deg"
- />
- </Grid>
- <Grid Grid.Row="1" Grid.Column="2">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="380"></ColumnDefinition>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <UserControls:SrdStationPositionControl HorizontalAlignment="Center" Margin="10,0,0,0" VerticalAlignment="Center" Grid.ColumnSpan="2" Width="430" Height="175"
- ModuleTitle="{Binding PlatingCell2RotationName}"
- ModuleName="{Binding PlatingCell2RotationName}"
- CurrentPosition="{Binding PlatingCell2RotationMotionData.MotorPosition}"
- Torque="{Binding PlatingCell2RotationMotionData.Torque}"
- CurrentStation="{Binding PlatingCell2RotationCurrentStation}"
- Unit="deg"
- />
- </Grid>
- <Grid Grid.Row="2" Grid.Column="0">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="380"></ColumnDefinition>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <UserControls:SrdStationPositionControl HorizontalAlignment="Center" Margin="10,0,0,0" VerticalAlignment="Center" Grid.ColumnSpan="2" Width="430" Height="175"
- ModuleTitle="{Binding PlatingCell3RotationName}"
- ModuleName="{Binding PlatingCell3RotationName}"
- CurrentPosition="{Binding PlatingCell3RotationMotionData.MotorPosition}"
- Torque="{Binding PlatingCell3RotationMotionData.Torque}"
- CurrentStation="{Binding PlatingCell3RotationCurrentStation}"
- Unit="deg"
- />
- </Grid>
- <Grid Grid.Row="2" Grid.Column="2">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="380"></ColumnDefinition>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <UserControls:SrdStationPositionControl HorizontalAlignment="Center" Margin="10,0,0,0" VerticalAlignment="Center" Grid.ColumnSpan="2" Width="430" Height="175"
- ModuleTitle="{Binding PlatingCell4RotationName}"
- ModuleName="{Binding PlatingCell4RotationName}"
- CurrentPosition="{Binding PlatingCell4RotationMotionData.MotorPosition}"
- Torque="{Binding PlatingCell4RotationMotionData.Torque}"
- CurrentStation="{Binding PlatingCell4RotationCurrentStation}"
- Unit="deg"
- />
- </Grid>
- </Grid>
- </UserControl>
|