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.

43 lines
2.6 KiB
Plaintext

2 years ago
<UserControl x:Class="XGL.UControl.UCStorageNew"
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:XGL.UControl"
mc:Ignorable="d"
d:DesignHeight="100" d:DesignWidth="1800" >
<UserControl.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/XGL;component/CSS/SearchBtnClass.xaml"/>
<ResourceDictionary Source="/XGL;component/CSS/SearchTextClass.xaml"/>
<ResourceDictionary Source="/XGL;component/CSS/DataGridClass.xaml"/>
<ResourceDictionary Source="/XGL;component/CSS/NormalSmlBtnClass.xaml"/>
<ResourceDictionary Source="/XGL;component/CSS/Style.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</UserControl.Resources>
<Grid >
<Grid.ColumnDefinitions>
<ColumnDefinition Width="70"></ColumnDefinition>
<ColumnDefinition ></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="60"></RowDefinition>
<RowDefinition Height="20"></RowDefinition>
</Grid.RowDefinitions>
<Border Grid.Row="0" Grid.Column="0" CornerRadius="10" VerticalAlignment="Stretch" Background="White" MouseDown="BBg_MouseDown">
<Border x:Name="bBg" CornerRadius="10" VerticalAlignment="Bottom" Background="Green">
</Border>
</Border>
<TextBlock x:Name="txtStoreNm" Text="库位1" FontSize="10" Foreground="White" Grid.Column="0" Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center"></TextBlock>
<TextBlock x:Name="txtStoreType" Margin="0 10 0 0" Text="" TextWrapping="Wrap" FontSize="14" Foreground="Blue" Grid.Column="0" Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Top" ></TextBlock>
<TextBlock x:Name="txtStoreLoad" Text="" Margin="0 0 0 0" FontSize="16" Foreground="Blue" Grid.Column="0 " Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Bottom" ></TextBlock>
<Border Grid.Row="0" Grid.Column="1" CornerRadius="10" Background="DeepSkyBlue" Margin="10 0 0 0">
<StackPanel x:Name="StoreCars" HorizontalAlignment="Stretch" Orientation="Horizontal" ></StackPanel>
</Border>
</Grid>
</UserControl>