36 lines
2.7 KiB
XML
36 lines
2.7 KiB
XML
<Window x:Class="Xylem.Common.Ui.RelatePcb.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:Ui.Linda"
|
|
mc:Ignorable="d"
|
|
Title="Linda" Height="246.796" Width="483.12" Closing="Window_Closing">
|
|
<Grid Margin="0,0,15,13">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="10*"/>
|
|
<RowDefinition Height="10*"/>
|
|
<RowDefinition Height="10*"/>
|
|
<RowDefinition Height="10*"/>
|
|
<RowDefinition Height="10*"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="131*"/>
|
|
<ColumnDefinition Width="123*"/>
|
|
<ColumnDefinition Width="73*"/>
|
|
<ColumnDefinition Width="20*"/>
|
|
<ColumnDefinition Width="107*"/>
|
|
<ColumnDefinition Width="6*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Label Content="Order Number" HorizontalAlignment="Left" Margin="14,12,0,0" VerticalAlignment="Top" Height="26" Width="88"/>
|
|
<TextBox Name="TxtOrderNumber" PreviewTextInput="TxtorderNumber_PreviewTextInput" HorizontalAlignment="Left" Height="26" Margin="6,12,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="81" Grid.Column="1"/>
|
|
<TextBox x:Name="TxtSerialNumber" HorizontalAlignment="Left" Height="26" Margin="6,5,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="81" Grid.Column="1" Grid.Row="1"/>
|
|
<Label Content="SerialNumber" HorizontalAlignment="Left" Margin="14,5,0,0" VerticalAlignment="Top" Grid.Row="1" Height="26" Width="82"/>
|
|
<TextBox x:Name="TxtPcbId" HorizontalAlignment="Left" Height="26" Margin="6,4,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="81" Grid.Column="1" Grid.Row="2"/>
|
|
<Label Content="PcbId" HorizontalAlignment="Left" Margin="14,4,0,0" VerticalAlignment="Top" Grid.Row="2" Height="26" Width="40"/>
|
|
<Label Content="Read from Slot" HorizontalAlignment="Left" Margin="92,4,0,0" VerticalAlignment="Top" Grid.Column="1" Grid.ColumnSpan="2" Grid.Row="2" Height="26" Width="89"/>
|
|
<ComboBox Name="cobSlot" HorizontalAlignment="Left" Height="26" Margin="4,4,0,0" VerticalAlignment="Top" Width="93" Grid.Column="4" Grid.Row="2" SelectionChanged="ComboBox_SelectionChanged"/>
|
|
<Button Name="btnMarry" Grid.ColumnSpan="5" Content="Marry" HorizontalAlignment="Left" Height="35" Margin="9,5,0,0" Grid.Row="3" VerticalAlignment="Top" Width="435" Click="btnMarry_Click"/>
|
|
</Grid>
|
|
</Window>
|