RobotCycleView.xaml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <UserControl x:Class="CyberX8_MainPages.Views.RobotCycleView"
  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. xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
  8. xmlns:prism="http://prismlibrary.com/"
  9. xmlns:customControls="clr-namespace:CyberX8_Themes.CustomControls;assembly=CyberX8_Themes"
  10. xmlns:unity="clr-namespace:CyberX8_MainPages.Unity"
  11. xmlns:Converters="clr-namespace:CyberX8_Themes.Converters;assembly=CyberX8_Themes"
  12. prism:ViewModelLocator.AutoWireViewModel="True"
  13. mc:Ignorable="d"
  14. d:DesignHeight="1000" d:DesignWidth="2000">
  15. <Canvas>
  16. <Grid Height="600" Canvas.Left="100" Canvas.Top="30" HorizontalAlignment="Center" VerticalAlignment="Top" Width="500">
  17. <Grid.RowDefinitions>
  18. <RowDefinition Height="70"/>
  19. <RowDefinition Height="70"/>
  20. <RowDefinition Height="70"/>
  21. <RowDefinition Height="70"/>
  22. <RowDefinition Height="70"/>
  23. <RowDefinition Height="70"/>
  24. <RowDefinition Height="70"/>
  25. <RowDefinition Height="70"/>
  26. <RowDefinition />
  27. </Grid.RowDefinitions>
  28. <Grid.ColumnDefinitions>
  29. <ColumnDefinition Width="1*"/>
  30. <ColumnDefinition Width="1*"/>
  31. <ColumnDefinition Width="1*"/>
  32. </Grid.ColumnDefinitions>
  33. <GroupBox Header="LP Select" FontSize="14" FontWeight="Bold" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="3">
  34. <Grid>
  35. <RadioButton Content="LP1" x:Name="lp1" IsChecked="True" FontSize="19" Margin="52,0,0,0" VerticalContentAlignment="Center" HorizontalAlignment="Left">
  36. <i:Interaction.Triggers>
  37. <i:EventTrigger EventName="Checked">
  38. <i:InvokeCommandAction Command="{Binding LPChangeCommand}" CommandParameter="{Binding ElementName=lp1,Path=Content}"/>
  39. </i:EventTrigger>
  40. </i:Interaction.Triggers>
  41. </RadioButton>
  42. <RadioButton Content="LP2" x:Name="lp2" IsChecked="False" FontSize="19" Margin="0,0,0,0" VerticalContentAlignment="Center" HorizontalAlignment="Center">
  43. <i:Interaction.Triggers>
  44. <i:EventTrigger EventName="Checked">
  45. <i:InvokeCommandAction Command="{Binding LPChangeCommand}" CommandParameter="{Binding ElementName=lp2,Path=Content}"/>
  46. </i:EventTrigger>
  47. </i:Interaction.Triggers>
  48. </RadioButton>
  49. <RadioButton Content="LP3" x:Name="lp3" IsChecked="False" FontSize="19" Margin="0,0,50,0" VerticalContentAlignment="Center" HorizontalAlignment="Right">
  50. <i:Interaction.Triggers>
  51. <i:EventTrigger EventName="Checked">
  52. <i:InvokeCommandAction Command="{Binding LPChangeCommand}" CommandParameter="{Binding ElementName=lp3,Path=Content}"/>
  53. </i:EventTrigger>
  54. </i:Interaction.Triggers>
  55. </RadioButton>
  56. </Grid>
  57. </GroupBox>
  58. <TextBlock Grid.Row="1" Grid.Column="0" Text="Degree:" FontSize="19" VerticalAlignment="Center" Margin="30,10,0,0"/>
  59. <TextBox Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="2" Height="35" Width="70" FontSize="15" HorizontalAlignment="Center" Margin="0,10,30,0" Background="White" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Text="{Binding InPutAlignDegree,Mode=TwoWay}" />
  60. <GroupBox Header="Aligner Select" FontSize="14" FontWeight="Bold" Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="3">
  61. <Grid>
  62. <RadioButton Content="Aligner1" x:Name="aligner" IsChecked="True" Margin="215,0,0,0" FontSize="19" VerticalContentAlignment="Center" HorizontalAlignment="Left">
  63. <i:Interaction.Triggers>
  64. <i:EventTrigger EventName="Checked">
  65. <i:InvokeCommandAction Command="{Binding AlignerChangeCommand}" CommandParameter="{Binding ElementName=aligner,Path=Content}"/>
  66. </i:EventTrigger>
  67. </i:Interaction.Triggers>
  68. </RadioButton>
  69. </Grid>
  70. </GroupBox>
  71. <GroupBox Header="Dummy Select" FontSize="14" FontWeight="Bold" Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="3" IsEnabled="{Binding IsDummySelected}">
  72. <Grid>
  73. <RadioButton Content="Dummy1" x:Name="dummy1" IsChecked="True" Margin="215,0,0,0" FontSize="19" VerticalContentAlignment="Center" HorizontalAlignment="Left">
  74. <i:Interaction.Triggers>
  75. <i:EventTrigger EventName="Checked">
  76. <i:InvokeCommandAction Command="{Binding DummyChangeCommand}" CommandParameter="{Binding ElementName=dummy1,Path=Content}"/>
  77. </i:EventTrigger>
  78. </i:Interaction.Triggers>
  79. </RadioButton>
  80. <RadioButton Content="Dummy2" x:Name="dummy2" IsChecked="False" Margin="300,0,0,0" FontSize="19" VerticalContentAlignment="Center" HorizontalAlignment="Center">
  81. <i:Interaction.Triggers>
  82. <i:EventTrigger EventName="Checked">
  83. <i:InvokeCommandAction Command="{Binding DummyChangeCommand}" CommandParameter="{Binding ElementName=dummy2,Path=Content}"/>
  84. </i:EventTrigger>
  85. </i:Interaction.Triggers>
  86. </RadioButton>
  87. </Grid>
  88. </GroupBox>
  89. <CheckBox Grid.Row="2" Grid.Column="0" Margin="30,12,0,0" VerticalAlignment="Center" HorizontalAlignment="Left" Content="DummySelect" FontSize="16" FontWeight="Bold"
  90. IsChecked="{Binding IsDummySelected,Mode=TwoWay}"/>
  91. <GroupBox Header="SRD Select" FontSize="14" FontWeight="Bold" Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="3" IsEnabled="{Binding IsSrdSelected}">
  92. <Grid>
  93. <RadioButton Content="SRD1" x:Name="srd1" IsChecked="True" Margin="215,0,0,0" FontSize="19" VerticalContentAlignment="Center" HorizontalAlignment="Left">
  94. <i:Interaction.Triggers>
  95. <i:EventTrigger EventName="Checked">
  96. <i:InvokeCommandAction Command="{Binding SrdChangeCommand}" CommandParameter="{Binding ElementName=srd1,Path=Content}"/>
  97. </i:EventTrigger>
  98. </i:Interaction.Triggers>
  99. </RadioButton>
  100. <RadioButton Content="SRD2" x:Name="srd2" IsChecked="False" Margin="265,0,0,0" FontSize="19" VerticalContentAlignment="Center" HorizontalAlignment="Center">
  101. <i:Interaction.Triggers>
  102. <i:EventTrigger EventName="Checked">
  103. <i:InvokeCommandAction Command="{Binding SrdChangeCommand}" CommandParameter="{Binding ElementName=srd2,Path=Content}"/>
  104. </i:EventTrigger>
  105. </i:Interaction.Triggers>
  106. </RadioButton>
  107. </Grid>
  108. </GroupBox>
  109. <CheckBox Grid.Row="4" Grid.Column="0" Margin="30,12,0,0" VerticalAlignment="Center" HorizontalAlignment="Left" Content="PufSelect" FontSize="16" FontWeight="Bold"
  110. IsChecked="{Binding IsPufSelected,Mode=TwoWay}"/>
  111. <GroupBox Header="Puf Select" FontSize="14" FontWeight="Bold" Grid.Row="4" Grid.Column="0" Grid.ColumnSpan="3" IsEnabled="{Binding IsPufSelected}">
  112. <Grid>
  113. <RadioButton Content="PUF1" x:Name="puf1" IsChecked="True" Margin="215,0,0,0" FontSize="19" VerticalContentAlignment="Center" HorizontalAlignment="Left">
  114. <i:Interaction.Triggers>
  115. <i:EventTrigger EventName="Checked">
  116. <i:InvokeCommandAction Command="{Binding PufChangeCommand}" CommandParameter="{Binding ElementName=puf1,Path=Content}"/>
  117. </i:EventTrigger>
  118. </i:Interaction.Triggers>
  119. </RadioButton>
  120. </Grid>
  121. </GroupBox>
  122. <CheckBox Grid.Row="3" Grid.Column="0" Margin="30,12,0,0" VerticalAlignment="Center" HorizontalAlignment="Left" Content="SrdSelect" FontSize="16" FontWeight="Bold"
  123. IsChecked="{Binding IsSrdSelected,Mode=TwoWay}"/>
  124. <TextBlock Grid.Row="5" Grid.Column="0" Text="Cycle :" FontSize="19" VerticalAlignment="Center" Margin="58,0,0,0"/>
  125. <TextBox Grid.Row="5" Grid.Column="1" Height="35" Width="80" FontSize="15" HorizontalAlignment="Left" Margin="0,0,0,0" Background="White" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Text="{Binding InPutCycleTimes,Mode=TwoWay}" />
  126. <TextBlock Grid.Row="6" Grid.Column="0" Text="Current :" FontSize="19" VerticalAlignment="Center" Margin="58,0,0,0"/>
  127. <Border Grid.Row="6" Grid.Column="1" Margin="0,0,0,0" Background="Black" Height="35" Width="80" HorizontalAlignment="Left">
  128. <TextBlock Text="{Binding CurrentCycle}" Foreground="Lime" FontSize="16" FontWeight="Bold" VerticalAlignment="Center" TextAlignment="Center" HorizontalAlignment="Center"/>
  129. </Border>
  130. <Button Grid.Row="7" Grid.Column="0" Grid.ColumnSpan="2" Content="Start" Width="120" Height="36" Command="{Binding RobotCycleStartCommand}" FontSize="18" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  131. <Button Grid.Row="7" Grid.Column="1" Grid.ColumnSpan="2" Content="Aobot" Width="120" Height="36" Command="{Binding RobotCycleAbortCommand}" FontSize="18" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  132. </Grid>
  133. </Canvas>
  134. </UserControl>