You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
2.6 KiB
44 lines
2.6 KiB
<UserControl x:Class="RobotClientWpf.Views.ConfigView"
|
|
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:RobotClientWpf.Views"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="120"/>
|
|
<RowDefinition Height="120"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<GroupBox Grid.Row="0" Grid.Column="0" Header="SplitFlap Configuration">
|
|
<DockPanel>
|
|
<Label DockPanel.Dock="Top">Configure Hardware IDs:</Label>
|
|
<Label VerticalAlignment="Center">0:</Label>
|
|
<TextBox x:Name="tbSf1" TextAlignment="Center" Width="30" Height="30" Margin="10 0"></TextBox>
|
|
<Label VerticalAlignment="Center">1:</Label>
|
|
<TextBox x:Name="tbSf2" TextAlignment="Center" Width="30" Height="30" Margin="10 0"></TextBox>
|
|
<Label VerticalAlignment="Center">2:</Label>
|
|
<TextBox x:Name="tbSf3" TextAlignment="Center" Width="30" Height="30" Margin="10 0"></TextBox>
|
|
<Label VerticalAlignment="Center">3:</Label>
|
|
<TextBox x:Name="tbSf4" TextAlignment="Center" Width="30" Height="30" Margin="10 0"></TextBox>
|
|
<Button x:Name="btnApplyConfiguration" Content="Apply" HorizontalAlignment="Right" Height="30" Width="100" Margin="10" Click="btnApplyConfiguration_Click"/>
|
|
</DockPanel>
|
|
</GroupBox>
|
|
<GroupBox Grid.Row="1" Grid.Column="0" Header="Line Sensor calibration">
|
|
<DockPanel>
|
|
<StackPanel DockPanel.Dock="Left" Orientation="Vertical">
|
|
<Button x:Name="btnStartCalibration" Content="Start Calibration" Margin="5" Width="200" Height="30" Click="btnStartCalibration_Click" />
|
|
<Button x:Name="btnEndCalibration" Content="End Calibration" Margin="5" Width="200" Height="30" Click="btnEndCalibration_Click" />
|
|
</StackPanel>
|
|
|
|
<Button DockPanel.Dock="Top" x:Name="btnGetCalibrationData" Content="Get Calibration Data" Margin="5" Width="200" Height="30" Click="btnGetCalibrationData_Click"/>
|
|
</DockPanel>
|
|
</GroupBox>
|
|
</Grid>
|
|
</UserControl>
|
|
|