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.
35 lines
1.8 KiB
Plaintext
35 lines
1.8 KiB
Plaintext
|
2 years ago
|
<UserControl x:Class="XGL.UControl.UCStorage"
|
||
|
|
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="110" 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="40"></RowDefinition>
|
||
|
|
</Grid.RowDefinitions>
|
||
|
|
|
||
|
|
<TextBlock x:Name="txtStoreNm" Text="库位1" FontSize="16" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"></TextBlock>
|
||
|
|
<Border Grid.Row="0" Grid.Column="1" CornerRadius="10" Background="DeepSkyBlue" Margin="5">
|
||
|
|
<StackPanel x:Name="StoreCars" HorizontalAlignment="Stretch" Orientation="Horizontal" ></StackPanel>
|
||
|
|
</Border>
|
||
|
|
</Grid>
|
||
|
|
</UserControl>
|