VPWStationPositionControl.xaml 6.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <UserControl x:Class="PunkHPX8_Themes.UserControls.VPWStationPositionControl"
  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="PunkHPX8_Themes.UserControls"
  7. xmlns:converters="clr-namespace:PunkHPX8_Themes.Converters"
  8. xmlns:customControls="clr-namespace:PunkHPX8_Themes.CustomControls"
  9. xmlns:Control="clr-namespace:MECF.Framework.UI.Core.Control;assembly=MECF.Framework.UI.Core"
  10. mc:Ignorable="d" x:Name="self"
  11. d:DesignHeight="160" d:DesignWidth="400" Loaded="Self_Loaded">
  12. <UserControl.Resources>
  13. <converters:BoolToColor x:Key="boolToColor"/>
  14. </UserControl.Resources>
  15. <Grid>
  16. <GroupBox Header="{Binding ModuleTitle, ElementName=self}" Background="{DynamicResource Table_BD_Title}" BorderBrush="DarkGray">
  17. <Grid>
  18. <Grid.RowDefinitions>
  19. <RowDefinition Height="30"/>
  20. <RowDefinition Height="30"/>
  21. <RowDefinition Height="30"/>
  22. <RowDefinition Height="30"/>
  23. <RowDefinition Height="30"/>
  24. <RowDefinition/>
  25. </Grid.RowDefinitions>
  26. <Grid.ColumnDefinitions>
  27. <ColumnDefinition Width="130"/>
  28. <ColumnDefinition Width="135"/>
  29. <ColumnDefinition Width="120"/>
  30. </Grid.ColumnDefinitions>
  31. <ComboBox Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2" Margin="7,2" ItemsSource="{Binding ElementName=self,Path=ModuleItemSource}" SelectedItem="{Binding ElementName=self,Path=ModuleSelectedItem,Mode=TwoWay}"/>
  32. <WrapPanel Grid.Row="0" Grid.Column="2" >
  33. <Label Height="40" FontSize="14" Content="At Station" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  34. <Ellipse Margin="5,0" Width="16" Height="16" Fill="{Binding IsAtStation, Converter={StaticResource boolToColor}, ElementName=self}" Stroke="Silver"/>
  35. </WrapPanel>
  36. <Label Grid.Row="1" Grid.Column="0" Content="Saved Position" VerticalAlignment="Center" Margin="2" FontSize="14" FontWeight="Bold"/>
  37. <WrapPanel Grid.Row="1" Grid.Column="1" VerticalAlignment="Center" Margin="0,0,5,0">
  38. <TextBlock Width="80" Text="{Binding SavedPosition, ElementName=self, StringFormat=\{0:F2\},Mode=TwoWay}" Background="Black" Foreground="Lime" FontSize="16" FontWeight="Bold"/>
  39. <TextBlock Margin="2,0" Width="45" Text="deg" Background="Black" Foreground="Lime" FontSize="16" FontWeight="Bold"/>
  40. </WrapPanel>
  41. <Button Style="{StaticResource SysBtnStyle}" Content="Goto Saved Pos" Grid.Column="2" Grid.Row="1" Height="25" FontSize="13" Click="SavedPos_Click" Margin="0,2,0,3"/>
  42. <Label Grid.Row="2" Grid.Column="0" Content="Current Position" VerticalAlignment="Center" Margin="2" FontSize="14" FontWeight="Bold"/>
  43. <WrapPanel Grid.Row="2" Grid.Column="1" VerticalAlignment="Center" Margin="0,0,5,0">
  44. <TextBlock Width="80" Text="{Binding CurrentPosition, ElementName=self, StringFormat=\{0:F2\},Mode=TwoWay}" Background="Black" Foreground="Lime" FontSize="16" FontWeight="Bold"/>
  45. <TextBlock Margin="2,0" Width="45" Text="deg" Background="Black" Foreground="Lime" FontSize="16" FontWeight="Bold"/>
  46. </WrapPanel>
  47. <Button Style="{StaticResource SysBtnStyle}" Content="Save Motor Pos" Grid.Column="2" Grid.Row="2" Height="25" FontSize="13" Click="MotorPos_Click" Margin="0,3,0,2"/>
  48. <customControls:PathButton Grid.Row="3" Grid.Column="0" PathData="{StaticResource Ico_LeftDbArrow}" DefaultFillBrush="White" Click="LeftCommand_Click" Width="40" Height="25" Margin="80,2,10,2" />
  49. <WrapPanel Grid.Row="3" Grid.Column="1" VerticalAlignment="Center" Margin="0,0,5,0">
  50. <Control:NumbericUpDown Height="30" Width="80" Value="{Binding ElementName=self,Path=DegValue,Mode=TwoWay}" IncrementValue="{Binding ElementName=self,Path=IncrementValue}"/>
  51. <TextBlock Margin="2,0" Width="45" Height="22" Text="deg" Background="Black" Foreground="Lime" FontSize="16" FontWeight="Bold"/>
  52. </WrapPanel>
  53. <customControls:PathButton Grid.Row="3" Grid.Column="2" PathData="{StaticResource Ico_RightDbArrow}" DefaultFillBrush="White" Click="RightCommand_Click" Width="40" Height="25" Margin="0,2,80,2" />
  54. <Label Grid.Row="4" Grid.Column="0" Content="Torque" VerticalAlignment="Center" Margin="2" FontSize="14" FontWeight="Bold"/>
  55. <WrapPanel Grid.Row="4" Grid.Column="1" VerticalAlignment="Center" Margin="0,0,5,0">
  56. <TextBlock Width="80" Text="{Binding Torque, ElementName=self, StringFormat=\{0:F2\},Mode=TwoWay}" Background="Black" Foreground="Lime" FontSize="16" FontWeight="Bold"/>
  57. <TextBlock Margin="2,0" Width="45" Text="%" Background="Black" Foreground="Lime" FontSize="16" FontWeight="Bold"/>
  58. </WrapPanel>
  59. <WrapPanel Grid.Row="4" Grid.Column="2">
  60. <Label Height="30" Content="Station" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  61. <Label Height="30" Content="{Binding ElementName=self,Path=CurrentStation}" Foreground="DarkBlue" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Left"
  62. VerticalAlignment="Center" HorizontalAlignment="Center" Width="68"/>
  63. </WrapPanel>
  64. </Grid>
  65. </GroupBox>
  66. </Grid>
  67. </UserControl>