<Window x:Class="XHandler.View.ManualCoating.DataFillTips"
|
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"
|
xmlns:local="clr-namespace:XHandler.View.ManualCoating"
|
xmlns:str="clr-namespace:XHandler.Properties"
|
mc:Ignorable="d" WindowStartupLocation = "CenterOwner"
|
d:DesignHeight="450" d:DesignWidth="800" WindowStyle="None" AllowsTransparency="True" ResizeMode="NoResize" Background="#00FFFFFF"
|
>
|
<Grid>
|
<Grid.RowDefinitions>
|
<RowDefinition Height="*"/>
|
<RowDefinition Height="auto"/>
|
<RowDefinition Height="*"/>
|
</Grid.RowDefinitions>
|
<Grid.ColumnDefinitions>
|
<ColumnDefinition Width="*"/>
|
<ColumnDefinition Width="auto"/>
|
<ColumnDefinition Width="*"/>
|
</Grid.ColumnDefinitions>
|
|
<Grid Grid.Row="1" Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center" Width="450" Height="210">
|
<Grid.RowDefinitions>
|
<RowDefinition Height="40"/>
|
<RowDefinition Height="*"/>
|
</Grid.RowDefinitions>
|
|
<Grid Grid.Row="0" MouseDown="Grid_MouseDown">
|
<Border Background="{DynamicResource blueBrush}" CornerRadius="10 10 0 0" BorderThickness="0">
|
<Grid>
|
<!--title-->
|
<TextBlock Text="{x:Static str:Resources.strDataFillTips}" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="20 0" FontSize="20"
|
Foreground="White" FontWeight="Bold"/>
|
<Button Content="×" HorizontalAlignment="Right" VerticalAlignment="Center" VerticalContentAlignment="Center" Margin="10 0" FontSize="28" Width="40" Height="40"
|
FontWeight="Bold" Foreground="White" Style="{DynamicResource BlueButtonStyle}" Background="{DynamicResource blueBrush}" Click="Button_Click"/>
|
</Grid>
|
|
</Border>
|
</Grid>
|
|
<Border Grid.Row="1" Background="White" CornerRadius="0 0 10 10" BorderThickness="0">
|
<Grid Margin="30 0">
|
<Grid.RowDefinitions>
|
<RowDefinition Height="50"/>
|
<RowDefinition Height="40"/>
|
<RowDefinition Height="*"/>
|
</Grid.RowDefinitions>
|
<Grid.ColumnDefinitions>
|
<ColumnDefinition Width=".9*"/>
|
<ColumnDefinition Width="*"/>
|
</Grid.ColumnDefinitions>
|
<TextBlock x:Name="texblockName" Text="来源皿码" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0 0 10 0"/>
|
<TextBox x:Name="textBoxName" Grid.Column="1" FontSize="16" Background="{DynamicResource lightGrayBrush}" Height="30" BorderThickness="0"
|
VerticalContentAlignment="Center"/>
|
|
<TextBlock Grid.Row="1" Text="{x:Static str:Resources.strNeedCopy}" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Right"
|
Margin="0 0 10 0"/>
|
<StackPanel Grid.Row="1" Grid.Column="1" Orientation="Horizontal">
|
<TextBox x:Name="textBoxNoFrom" Grid.Column="1" FontSize="16" Background="{DynamicResource lightGrayBrush}" Height="30" BorderThickness="0"
|
Width="89" VerticalContentAlignment="Center"/>
|
<TextBlock Text="{x:Static str:Resources.strTo}" FontSize="16" VerticalAlignment="Center" Margin="10 0"/>
|
<TextBox x:Name="textBoxNoTo" Grid.Column="1" FontSize="16" Background="{DynamicResource lightGrayBrush}" Height="30" BorderThickness="0"
|
Width="89" VerticalContentAlignment="Center"/>
|
</StackPanel>
|
|
<Button x:Name="btnCancel" Grid.Row="2" Grid.ColumnSpan="2" Content="{x:Static str:Resources.btnCancel}" Style="{DynamicResource BlueButtonStyle}" Background="LightGray"
|
Width="100" Height="40" FontSize="16" HorizontalAlignment="Right" Click="Button_Click" Margin="0 0 120 0"/>
|
|
<Button x:Name="btnOk" Grid.Row="2" Grid.ColumnSpan="2" Content="{x:Static str:Resources.btnOK}" Style="{DynamicResource BlueButtonStyle}" Background="{DynamicResource blueBrush}"
|
Width="100" Height="40" FontSize="16" HorizontalAlignment="Right" Click="btnOk_Click"/>
|
</Grid>
|
</Border>
|
|
</Grid>
|
</Grid>
|
</Window>
|