| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <Window x:Class="TeamAAS_VP.Views.AddScrewView"
- 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:TeamAAS_VP.Views"
- mc:Ignorable="d"
- Title="AddScrewView" Height="450" Width="800">
- <Grid Margin="20">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- </Grid.RowDefinitions>
- <TextBlock Grid.Row="0"
- Text="请扫描螺丝条码:"
- FontSize="14"
- Margin="0,0,0,10"/>
- <!-- 输入框会自动接收并显示扫码枪的结果 -->
- <TextBox x:Name="BarcodeTextBox"
- Grid.Row="1"
- Height="30"
- FontSize="14"
- Margin="0,0,0,20"/>
- <StackPanel Grid.Row="2"
- Orientation="Horizontal"
- HorizontalAlignment="Right">
- <Button x:Name="OkButton"
- Content="确定"
- Width="80"
- Height="30"
- Margin="0,0,10,0"
- Click="OkButton_Click"/>
- <Button x:Name="CancelButton"
- Content="取消"
- Width="80"
- Height="30"
- Click="CancelButton_Click"/>
- </StackPanel>
- </Grid>
- </Window>
|