|
|
@@ -1,11 +1,14 @@ |
|
|
|
<UserControl x:Class="BPASmartClient.TourismCollege.View.ItemStorageView" |
|
|
|
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:BPASmartClient.TourismCollege.View" |
|
|
|
mc:Ignorable="d" |
|
|
|
d:DesignHeight="450" d:DesignWidth="800" Name="库位状态"> |
|
|
|
<UserControl |
|
|
|
x:Class="BPASmartClient.TourismCollege.View.ItemStorageView" |
|
|
|
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:local="clr-namespace:BPASmartClient.TourismCollege.View" |
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
|
|
|
Name="库位状态" |
|
|
|
d:DesignHeight="450" |
|
|
|
d:DesignWidth="800" |
|
|
|
mc:Ignorable="d"> |
|
|
|
<UserControl.Resources> |
|
|
|
<ResourceDictionary> |
|
|
|
<ResourceDictionary.MergedDictionaries> |
|
|
@@ -25,36 +28,47 @@ |
|
|
|
</Grid.RowDefinitions> |
|
|
|
|
|
|
|
|
|
|
|
<!--#region 入库电子称状态 --> |
|
|
|
<!--#region 入库电子称状态--> |
|
|
|
<StackPanel> |
|
|
|
<TextBlock Text="{Binding Weight,StringFormat=当前重量:{0}g}" Width="200"/> |
|
|
|
<TextBlock Width="200" Text="{Binding Weight, StringFormat=当前重量:{0}g}" /> |
|
|
|
</StackPanel> |
|
|
|
<!--#endregion--> |
|
|
|
|
|
|
|
<!--#region 入库操作 --> |
|
|
|
<!--#region 入库操作--> |
|
|
|
<StackPanel Grid.Row="1" Margin="5"> |
|
|
|
<TextBlock Text="入库名称:"/> |
|
|
|
<TextBlock Text="入库名称:" /> |
|
|
|
<ComboBox /> |
|
|
|
|
|
|
|
<Button Content="入库" Margin="0,10"/> |
|
|
|
<Button Margin="0,10" Content="入库" /> |
|
|
|
</StackPanel> |
|
|
|
<!--#endregion--> |
|
|
|
<!--#region 辅料仓 --> |
|
|
|
<UniformGrid Columns="8" Grid.Column="1" Margin="3" Background="ForestGreen"> |
|
|
|
|
|
|
|
</UniformGrid> |
|
|
|
<!--#region 辅料仓--> |
|
|
|
<UniformGrid |
|
|
|
Grid.Column="1" |
|
|
|
Margin="3" |
|
|
|
Background="ForestGreen" |
|
|
|
Columns="8" /> |
|
|
|
<!--#endregion--> |
|
|
|
<!--#region 原料仓 --> |
|
|
|
<ListView Grid.Row="1" Grid.Column="1" Margin="3" BorderThickness="1" Background="AliceBlue"> |
|
|
|
<!--#region 原料仓--> |
|
|
|
<ListView |
|
|
|
Grid.Row="1" |
|
|
|
Grid.Column="1" |
|
|
|
Margin="3" |
|
|
|
Background="AliceBlue" |
|
|
|
BorderThickness="1"> |
|
|
|
<ListView.ItemsPanel> |
|
|
|
<ItemsPanelTemplate> |
|
|
|
<UniformGrid Columns="4" Rows="3" HorizontalAlignment="Left" VerticalAlignment="Top"/> |
|
|
|
<UniformGrid |
|
|
|
HorizontalAlignment="Left" |
|
|
|
VerticalAlignment="Top" |
|
|
|
Columns="4" |
|
|
|
Rows="3" /> |
|
|
|
</ItemsPanelTemplate> |
|
|
|
</ListView.ItemsPanel> |
|
|
|
|
|
|
|
<ListView.ItemTemplate> |
|
|
|
<DataTemplate> |
|
|
|
<Border Background="Black"/> |
|
|
|
<Border Background="Black" /> |
|
|
|
</DataTemplate> |
|
|
|
</ListView.ItemTemplate> |
|
|
|
</ListView> |
|
|
|