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.
52 lines
3.9 KiB
XML
52 lines
3.9 KiB
XML
<Window x:Class="XGLFinishPro.Views.AuxiliaryPersonnel"
|
|
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:XGLFinishPro.Views"
|
|
mc:Ignorable="d"
|
|
WindowStyle="None"
|
|
Loaded="Window_Loaded"
|
|
xmlns:hc="https://handyorg.github.io/handycontrol"
|
|
WindowStartupLocation="CenterScreen"
|
|
Height="450" Width="800">
|
|
|
|
<Grid Margin="10">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="1.5*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
<TextBlock Text="辅助人员数据输入" VerticalAlignment="Center" HorizontalAlignment="Center" Grid.ColumnSpan="2" FontSize="25"/>
|
|
<TextBlock Text="姓名:" Grid.Column="0" Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Right" FontSize="25"/>
|
|
<TextBlock x:Name="NickName" Grid.Column="1" Grid.Row="1"
|
|
VerticalAlignment="Center" HorizontalAlignment="Left" FontSize="25"/>
|
|
<TextBlock Text="岗位:" Grid.Column="0" Grid.Row="2" VerticalAlignment="Center" HorizontalAlignment="Right" FontSize="25"/>
|
|
<TextBlock x:Name="Position" Grid.Column="1" Grid.Row="2" VerticalAlignment="Center" HorizontalAlignment="Left" FontSize="25"/>
|
|
<TextBlock Text="订单编号:" Grid.Column="0" Grid.Row="3" VerticalAlignment="Center" HorizontalAlignment="Right" FontSize="25"/>
|
|
<TextBlock x:Name="OrderNumber" Grid.Column="1" Grid.Row="3" VerticalAlignment="Center" HorizontalAlignment="Left" FontSize="25"/>
|
|
<TextBlock Text="产品名称:" Grid.Column="0" Grid.Row="4" VerticalAlignment="Center" HorizontalAlignment="Right" FontSize="25"/>
|
|
<TextBlock x:Name="ProductName" Grid.Column="1" Grid.Row="4" VerticalAlignment="Center" HorizontalAlignment="Left" FontSize="25"/>
|
|
<TextBlock Text="工时:" Grid.Column="0" Grid.Row="5" VerticalAlignment="Center" HorizontalAlignment="Right" FontSize="25"/>
|
|
<TextBox x:Name="HourlyWage" Grid.Column="1" Grid.Row="5" VerticalAlignment="Center" HorizontalAlignment="Left" Width="300" FontSize="25"/>
|
|
<TextBlock Text="扣款:" Grid.Column="0" Grid.Row="6" VerticalAlignment="Center" HorizontalAlignment="Right" FontSize="25"/>
|
|
<TextBox x:Name="Deduction" Grid.Column="1" Grid.Row="6" VerticalAlignment="Center" HorizontalAlignment="Left" Width="300" FontSize="25"/>
|
|
<TextBlock Text="备注信息:" Grid.Column="0" Grid.Row="7" VerticalAlignment="Center" HorizontalAlignment="Right" FontSize="25"/>
|
|
<TextBox x:Name="Description" Grid.Column="1" Grid.Row="7" VerticalAlignment="Center" HorizontalAlignment="Left" Width="300" FontSize="25"/>
|
|
<StackPanel Orientation="Horizontal" Grid.Row="8" Grid.ColumnSpan="2" HorizontalAlignment="Center">
|
|
<Button x:Name="AddButton" Grid.Column="0" Grid.Row="6" Content="保存" VerticalAlignment="Center" Background="#2B7EE6" Foreground="White" HorizontalAlignment="Center" Width="100" Height="65" FontSize="25" Click="AddButton_Click"/>
|
|
<Button x:Name="CancelButton" Grid.Column="1" Grid.Row="6" Content="取消" VerticalAlignment="Center" Background="#2B7EE6" Foreground="White" HorizontalAlignment="Center" Width="100" Height="65" FontSize="25" Margin="100,0,0,0" Click="CancelButton_Click"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|