|
|
|
<UserControl x:Class="Aucma.Core.OldBoxFoam.Views.FoamPlanPageView"
|
|
|
|
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:Aucma.Core.OldBoxFoam.Views"
|
|
|
|
mc:Ignorable="d" Background="#1152AC" FontFamily="Microsoft YaHei"
|
|
|
|
d:DesignHeight="1080" d:DesignWidth="1920">
|
|
|
|
|
|
|
|
<Border x:Name="HeightHelperPanel" BorderBrush="#0288d1" BorderThickness="0" CornerRadius="5" Background="Transparent" Margin="5">
|
|
|
|
<Grid>
|
|
|
|
<Grid.Resources>
|
|
|
|
<Style TargetType="TextBlock">
|
|
|
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
|
|
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
|
|
|
<Setter Property="FontSize" Value="16"/>
|
|
|
|
<Setter Property="FontFamily" Value="Microsoft YaHei"/>
|
|
|
|
</Style>
|
|
|
|
<Style TargetType="Border">
|
|
|
|
<Setter Property="BorderBrush" Value="#0288d1"/>
|
|
|
|
<Setter Property="BorderThickness" Value="1"/>
|
|
|
|
</Style>
|
|
|
|
</Grid.Resources>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition />
|
|
|
|
<RowDefinition />
|
|
|
|
<RowDefinition/>
|
|
|
|
<RowDefinition/>
|
|
|
|
<RowDefinition/>
|
|
|
|
<RowDefinition/>
|
|
|
|
<RowDefinition/>
|
|
|
|
<RowDefinition/>
|
|
|
|
<RowDefinition/>
|
|
|
|
<RowDefinition/>
|
|
|
|
<RowDefinition/>
|
|
|
|
<RowDefinition/>
|
|
|
|
<RowDefinition/>
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition />
|
|
|
|
<ColumnDefinition />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
<Grid Grid.Column="0" Grid.Row="0">
|
|
|
|
<Border Grid.Row="0" Grid.Column="1" >
|
|
|
|
<TextBlock Text="物料编号" Foreground="White" FontSize="20"/>
|
|
|
|
</Border>
|
|
|
|
</Grid>
|
|
|
|
<Grid Grid.Column="0" Grid.Row="1">
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="0.1*"/>
|
|
|
|
<ColumnDefinition Width="0.3*"/>
|
|
|
|
<ColumnDefinition Width="1*"/>
|
|
|
|
<ColumnDefinition Width="0.3*"/>
|
|
|
|
<ColumnDefinition Width="0.3*"/>
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Border Grid.Column="0" >
|
|
|
|
<TextBlock Text="1" x:Name="PlanId1" Foreground="White" FontSize="20"/>
|
|
|
|
</Border>
|
|
|
|
</Grid>
|
|
|
|
<Grid Grid.Column="1">
|
|
|
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="0.1*"/>
|
|
|
|
<ColumnDefinition Width="0.3*"/>
|
|
|
|
<ColumnDefinition Width="1*"/>
|
|
|
|
<ColumnDefinition Width="0.3*"/>
|
|
|
|
<ColumnDefinition Width="0.3*"/>
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Border Grid.Row="0" Grid.Column="2">
|
|
|
|
<TextBlock Text="夜班计划" Foreground="White" FontSize="20"/>
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
</UserControl>
|