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.
32 lines
1.4 KiB
32 lines
1.4 KiB
<UserControl x:Class="SiaSun.LMS.WPFClient.UC.ucDetailQuery"
|
|
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="300" d:DesignWidth="300">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<GroupBox Header="产品序列号列表" Grid.Row="0">
|
|
<ListBox Name="lbDetailList" KeyDown="lbDetailList_KeyDown"></ListBox>
|
|
</GroupBox>
|
|
|
|
<GroupBox Header="输入产品序列号" Grid.Row="1">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"></ColumnDefinition>
|
|
<ColumnDefinition Width="Auto"></ColumnDefinition>
|
|
</Grid.ColumnDefinitions>
|
|
<TextBox Name="txtDetail" KeyDown="txtDetail_KeyDown" Grid.Column="0"></TextBox>
|
|
<Button Name="btnClear" Width="80" Content="重置" Click="btnClear_Click" Grid.Column="1" ></Button>
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
</GroupBox>
|
|
</Grid>
|
|
</UserControl>
|