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.

18 lines
1.2 KiB
XML

<Window x:Class="XGL.UControl.orderzfzy"
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:XGL.UControl"
mc:Ignorable="d"
Title="订单转移" Height="450" Width="800" Loaded="Window_Loaded" WindowStartupLocation="CenterScreen">
<Grid Background="#213269">
<Label Content="原订单" FontSize="20" Foreground="White" Width="150" Height="50" Margin="-300,-200,0,0"></Label>
<TextBox x:Name="ydd" Width="300" Height="50" Margin="150,-220,0,0" IsReadOnly="True" FontSize="25"></TextBox>
<Label Content="转移到订单" FontSize="20" Foreground="White" Width="150" Height="50" Margin="-300,60,0,0"></Label>
<TextBox x:Name="xdd" Width="300" Height="50" Margin="150,40,0,0" FontSize="25"></TextBox>
<Button Width="100" Height="50" Margin="-100,240,0,0" Click="Button_Click_1">确定</Button>
<Button Width="100" Height="50" Margin="200,240,0,0" Click="Button_Click">取消</Button>
</Grid>
</Window>