52 lines
4.3 KiB
Plaintext
52 lines
4.3 KiB
Plaintext
|
|
<UserControl x:Class="ProductionUiCordonelLegacy.UserControls.FinalTest.UcRadioCheck"
|
||
|
|
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"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
d:DesignHeight="150" d:DesignWidth="300" Background="Aquamarine">
|
||
|
|
<Grid Margin="0,0,0,0" HorizontalAlignment="Left" Width="300">
|
||
|
|
<Grid.ColumnDefinitions>
|
||
|
|
<ColumnDefinition Width="120px"/>
|
||
|
|
<ColumnDefinition Width="50px"/>
|
||
|
|
<ColumnDefinition Width="50px"/>
|
||
|
|
<ColumnDefinition Width="50px"/>
|
||
|
|
</Grid.ColumnDefinitions>
|
||
|
|
<Grid.RowDefinitions>
|
||
|
|
<RowDefinition Height="40*"/>
|
||
|
|
<RowDefinition Height="40*"/>
|
||
|
|
<RowDefinition Height="40*"/>
|
||
|
|
<RowDefinition Height="40*"/>
|
||
|
|
<RowDefinition Height="40*"/>
|
||
|
|
<RowDefinition Height="40*"/>
|
||
|
|
</Grid.RowDefinitions>
|
||
|
|
<Button Name="btnGetRssi" Content="Get RSSI" Click="Button_Click" HorizontalAlignment="Left" Width="66" Grid.Row="5" Grid.ColumnSpan="2" Margin="105,0,0,0"/>
|
||
|
|
<Button Name="btnReset" Content="Reset" Grid.Column="3" HorizontalAlignment="Left" Height="25" VerticalAlignment="Top" Width="50" Click="btnReset_Click" Grid.Row="5" Margin="27,0,-26,0"/>
|
||
|
|
<Label Content="Radio Check" HorizontalAlignment="Left" Height="30" Margin="10,0,0,0" Grid.RowSpan="2" VerticalAlignment="Top" Width="86" Grid.ColumnSpan="2"/>
|
||
|
|
|
||
|
|
<Label Content="" HorizontalAlignment="Left" Height="25" Margin="0,0,0,0" Grid.Row="1" Grid.Column="0" VerticalAlignment="Top" Width="68"/>
|
||
|
|
<Label Content="RSSI PAM=>Cord" HorizontalAlignment="Left" Height="25" Margin="0,0,0,0" Grid.Row="2" Grid.Column="0" VerticalAlignment="Top" Width="105" Grid.ColumnSpan="2"/>
|
||
|
|
<Label Content="RSSI SEMI=>SIRT" HorizontalAlignment="Left" Height="25" Margin="0,0,0,0" Grid.Row="3" Grid.Column="0" VerticalAlignment="Top" Width="105" Grid.ColumnSpan="2"/>
|
||
|
|
|
||
|
|
|
||
|
|
<Label Content="Min" HorizontalAlignment="Left" Height="25" Margin="0,0,0,0" Grid.Row="1" Grid.Column="1" VerticalAlignment="Top" Width="50"/>
|
||
|
|
<Label Name="lblCordMin" Content="-" HorizontalAlignment="Left" Height="25" Margin="0,0,0,0" Grid.Row="2" Grid.Column="1" VerticalAlignment="Top" Width="50" Grid.ColumnSpan="2"/>
|
||
|
|
<Label Name="lblSirtMin" Content="-" HorizontalAlignment="Left" Height="25" Margin="0,0,0,0" Grid.Row="3" Grid.Column="1" VerticalAlignment="Top" Width="50"/>
|
||
|
|
|
||
|
|
<Label Content="RSSI" HorizontalAlignment="Left" Height="25" Margin="0,0,0,0" Grid.Row="1" Grid.Column="2" VerticalAlignment="Top" Width="50"/>
|
||
|
|
<Label Name="lblCordRssi" Content="-" HorizontalAlignment="Left" Height="25" Margin="0,0,0,0" Grid.Row="2" Grid.Column="2" VerticalAlignment="Top" Width="50" Grid.ColumnSpan="2"/>
|
||
|
|
<Label Name="lblSirtRssi" Content="-" HorizontalAlignment="Left" Height="25" Margin="0,0,0,0" Grid.Row="3" Grid.Column="2" VerticalAlignment="Top" Width="50"/>
|
||
|
|
|
||
|
|
|
||
|
|
<Label Content="Max" HorizontalAlignment="Left" Height="25" Margin="0,0,0,0" Grid.Row="1" Grid.Column="3" VerticalAlignment="Top" Width="50"/>
|
||
|
|
<Label Name="lblCordMax" Content="-" HorizontalAlignment="Left" Height="25" Margin="0,0,0,0" Grid.Row="2" Grid.Column="3" VerticalAlignment="Top" Width="50" Grid.ColumnSpan="2"/>
|
||
|
|
<Label Name="lblSirtMax" Content="-" HorizontalAlignment="Left" Height="25" Margin="0,0,0,0" Grid.Row="3" Grid.Column="3" VerticalAlignment="Top" Width="50"/>
|
||
|
|
<Button Content="Done" IsEnabled="False" Name="BtnDone" HorizontalAlignment="Left" Height="25" Grid.Row="5" VerticalAlignment="Top" Width="100" Click="BtnDone_Click"/>
|
||
|
|
<Button Content="Skip" IsEnabled="True" Visibility="Hidden" x:Name="BtnDone_Copy" HorizontalAlignment="Left" Height="25" Grid.Row="4" VerticalAlignment="Top" Width="100" Click="BtnDone_Copy_Click" />
|
||
|
|
<Button x:Name="btnfrocePam" Content="Force a PAM" Click="BtnfrocePam_Click" HorizontalAlignment="Left" Width="72" Grid.Row="5" Grid.Column="2" Margin="1,0,0,0" Grid.ColumnSpan="2"/>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</Grid>
|
||
|
|
</UserControl>
|