You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
823 B
XML

<Window x:Class="XGLFinishPro.Views.InputNumberDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="叫料数量" Height="180" Width="300" WindowStartupLocation="CenterScreen" ResizeMode="NoResize">
<StackPanel Margin="20">
<TextBlock Text="请输入叫料数量:" Margin="0,0,0,10"/>
<TextBox x:Name="txtNumber" PreviewTextInput="txtNumber_PreviewTextInput" Width="200" MaxLength="8"/>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,20,0,0">
<Button Content="确定" Width="60" Margin="0,0,10,0" Click="BtnOk_Click"/>
<Button Content="取消" Width="60" Click="BtnCancel_Click"/>
</StackPanel>
</StackPanel>
</Window>