|
|
<UserControl x:Class="Aucma.Scada.UI.Page.InventoryInfo.SpaceInfoControl"
|
|
|
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.Scada.UI.Page.InventoryInfo"
|
|
|
mc:Ignorable="d"
|
|
|
d:DesignHeight="200" d:DesignWidth="400">
|
|
|
<Border Margin="5,5" Background="#0288d1" BorderBrush="#0288d1" BorderThickness="2" CornerRadius="10">
|
|
|
<Grid Margin="3,3">
|
|
|
<Grid.RowDefinitions>
|
|
|
<RowDefinition/>
|
|
|
<RowDefinition/>
|
|
|
<RowDefinition/>
|
|
|
</Grid.RowDefinitions>
|
|
|
<Border Grid.Row="0">
|
|
|
<Grid>
|
|
|
<Grid.ColumnDefinitions>
|
|
|
<ColumnDefinition/>
|
|
|
<ColumnDefinition/>
|
|
|
<ColumnDefinition/>
|
|
|
<ColumnDefinition/>
|
|
|
<ColumnDefinition/>
|
|
|
<ColumnDefinition/>
|
|
|
<ColumnDefinition/>
|
|
|
</Grid.ColumnDefinitions>
|
|
|
<Border Grid.Column="0" BorderBrush="White" BorderThickness="1">
|
|
|
<TextBlock Text="{Binding spaceCode}" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
</Border>
|
|
|
<Border Grid.Column="1" BorderBrush="White" BorderThickness="1">
|
|
|
<TextBlock Text="在库" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
</Border>
|
|
|
<Border Grid.Column="2" BorderBrush="White" BorderThickness="1">
|
|
|
<TextBlock Text="{Binding spaceStock}" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
</Border>
|
|
|
<Border Grid.Column="3" BorderBrush="White" BorderThickness="1">
|
|
|
<TextBlock Text="在途" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
</Border>
|
|
|
<Border Grid.Column="4" BorderBrush="White" BorderThickness="1">
|
|
|
<TextBlock Text="{Binding onTheWay}" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
</Border>
|
|
|
<Border Grid.Column="5" BorderBrush="White" BorderThickness="1">
|
|
|
<TextBlock Text="合计" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
</Border>
|
|
|
<Border Grid.Column="6" BorderBrush="White" BorderThickness="1">
|
|
|
<TextBlock Text="{Binding totalAmount}" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
</Border>
|
|
|
</Grid>
|
|
|
</Border>
|
|
|
<Border Grid.Row="1">
|
|
|
<Grid>
|
|
|
<Grid.ColumnDefinitions>
|
|
|
<ColumnDefinition Width="1*"/>
|
|
|
<ColumnDefinition Width="6*"/>
|
|
|
</Grid.ColumnDefinitions>
|
|
|
<Border Grid.Column="0" BorderBrush="White" BorderThickness="1">
|
|
|
<TextBlock Text="型号" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
</Border>
|
|
|
<Border Grid.Column="1" BorderBrush="White" BorderThickness="1">
|
|
|
<TextBlock Text="8307501015,SC-349,雪王爱喝水" FontSize="16" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
</Border>
|
|
|
</Grid>
|
|
|
</Border>
|
|
|
|
|
|
<Border Grid.Row="2">
|
|
|
<Grid>
|
|
|
<Grid.ColumnDefinitions>
|
|
|
<ColumnDefinition/>
|
|
|
<ColumnDefinition/>
|
|
|
<ColumnDefinition/>
|
|
|
<ColumnDefinition/>
|
|
|
<ColumnDefinition/>
|
|
|
<ColumnDefinition/>
|
|
|
<ColumnDefinition/>
|
|
|
</Grid.ColumnDefinitions>
|
|
|
<Border Grid.Column="0" BorderBrush="White" BorderThickness="1" >
|
|
|
<TextBlock Text="状态" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
</Border>
|
|
|
<Border Grid.Column="1" BorderBrush="White" BorderThickness="1">
|
|
|
<TextBlock Text="{Binding inStoreFlag}" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center">
|
|
|
<TextBlock.Style>
|
|
|
<Style TargetType="TextBlock">
|
|
|
<Setter Property="Foreground" Value="Green"/>
|
|
|
<Setter Property="Text" Value="入库"/>
|
|
|
<Style.Triggers>
|
|
|
<Trigger Property="Text" Value="2">
|
|
|
<Setter Property="Foreground" Value="Red"></Setter>
|
|
|
</Trigger>
|
|
|
</Style.Triggers>
|
|
|
</Style>
|
|
|
</TextBlock.Style>
|
|
|
</TextBlock>
|
|
|
</Border>
|
|
|
<Border Grid.Column="2" BorderBrush="White" BorderThickness="1">
|
|
|
<TextBlock Text="{Binding outStoreFlag}" FontSize="18" Foreground="Red" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
</Border>
|
|
|
<Border Grid.Column="3" BorderBrush="White" BorderThickness="1">
|
|
|
<TextBlock Text="{Binding unusualFlag}" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
</Border>
|
|
|
<Border Grid.Column="4" BorderBrush="White" BorderThickness="1">
|
|
|
<TextBlock Text="{Binding isFlag}" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
</Border>
|
|
|
<Border Grid.Column="5" BorderBrush="White" BorderThickness="1">
|
|
|
<TextBlock Text="明细" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
</Border>
|
|
|
<Border Grid.Column="6" BorderBrush="White" BorderThickness="1">
|
|
|
<Button Command="{Binding DataContext.UpdateCommand, RelativeSource={RelativeSource AncestorType=ItemsControl}}" CommandParameter="{Binding spaceCode}" Style="{StaticResource BUTTON_AGREE}">
|
|
|
<TextBlock Text="{Binding onlyOne}" FontSize="18" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center" />
|
|
|
</Button>
|
|
|
|
|
|
</Border>
|
|
|
</Grid>
|
|
|
</Border>
|
|
|
</Grid>
|
|
|
</Border>
|
|
|
</UserControl>
|