|
@ -42,11 +42,11 @@ |
|
|
<c:BButton Content="京仓" Width="70" |
|
|
<c:BButton Content="京仓" Width="70" |
|
|
Background="{Binding StoreTypeIndex,Converter={StaticResource objConverter},ConverterParameter=2:#8080FF:#F2F2F2}" |
|
|
Background="{Binding StoreTypeIndex,Converter={StaticResource objConverter},ConverterParameter=2:#8080FF:#F2F2F2}" |
|
|
Foreground="{Binding StoreTypeIndex,Converter={StaticResource objConverter},ConverterParameter=2:White:#4A4A4A}" |
|
|
Foreground="{Binding StoreTypeIndex,Converter={StaticResource objConverter},ConverterParameter=2:White:#4A4A4A}" |
|
|
Command="{Binding SetStoreIndexCommand,ConverterParameter={StaticResource store_JingCang}}"/> |
|
|
Command="{Binding SetStoreIndexCommand}" CommandParameter="{StaticResource store_JingCang}"/> |
|
|
<c:BButton Content="云仓" Width="70" |
|
|
<c:BButton Content="云仓" Width="70" |
|
|
Background="{Binding StoreTypeIndex,Converter={StaticResource objConverter},ConverterParameter=3:#8080FF:#F2F2F2}" |
|
|
Background="{Binding StoreTypeIndex,Converter={StaticResource objConverter},ConverterParameter=3:#8080FF:#F2F2F2}" |
|
|
Foreground="{Binding StoreTypeIndex,Converter={StaticResource objConverter},ConverterParameter=3:White:#4A4A4A}" |
|
|
Foreground="{Binding StoreTypeIndex,Converter={StaticResource objConverter},ConverterParameter=3:White:#4A4A4A}" |
|
|
Command="{Binding SetStoreIndexCommand,ConverterParameter={StaticResource store_YunCang}}"/> |
|
|
Command="{Binding SetStoreIndexCommand}" CommandParameter="{StaticResource store_YunCang}"/> |
|
|
<c:BButton Content="聚水潭" Width="70" |
|
|
<c:BButton Content="聚水潭" Width="70" |
|
|
Background="{Binding IsJST,Converter={StaticResource objConverter},ConverterParameter=true:#8080FF:#F2F2F2}" |
|
|
Background="{Binding IsJST,Converter={StaticResource objConverter},ConverterParameter=true:#8080FF:#F2F2F2}" |
|
|
Foreground="{Binding IsJST,Converter={StaticResource objConverter},ConverterParameter=true:White:#4A4A4A}" |
|
|
Foreground="{Binding IsJST,Converter={StaticResource objConverter},ConverterParameter=true:White:#4A4A4A}" |
|
@ -54,7 +54,7 @@ |
|
|
<c:BButton Content="商家仓" Width="70" |
|
|
<c:BButton Content="商家仓" Width="70" |
|
|
Background="{Binding StoreTypeIndex,Converter={StaticResource objConverter},ConverterParameter=1:#8080FF:#F2F2F2}" |
|
|
Background="{Binding StoreTypeIndex,Converter={StaticResource objConverter},ConverterParameter=1:#8080FF:#F2F2F2}" |
|
|
Foreground="{Binding StoreTypeIndex,Converter={StaticResource objConverter},ConverterParameter=1:White:#4A4A4A}" |
|
|
Foreground="{Binding StoreTypeIndex,Converter={StaticResource objConverter},ConverterParameter=1:White:#4A4A4A}" |
|
|
Command="{Binding SetStoreIndexCommand,ConverterParameter={StaticResource store_ShangJiaCang}}"/> |
|
|
Command="{Binding SetStoreIndexCommand}" CommandParameter="{StaticResource store_ShangJiaCang}"/> |
|
|
</StackPanel> |
|
|
</StackPanel> |
|
|
|
|
|
|
|
|
<TextBlock Text="件数:" HorizontalAlignment="Right" VerticalAlignment="Center" |
|
|
<TextBlock Text="件数:" HorizontalAlignment="Right" VerticalAlignment="Center" |
|
@ -63,11 +63,13 @@ |
|
|
Margin="5,0,10,0"/> |
|
|
Margin="5,0,10,0"/> |
|
|
|
|
|
|
|
|
<TextBlock Text="落仓去向:" HorizontalAlignment="Right" VerticalAlignment="Center" |
|
|
<TextBlock Text="落仓去向:" HorizontalAlignment="Right" VerticalAlignment="Center" |
|
|
Grid.Row="4"/> |
|
|
Grid.Row="4" |
|
|
|
|
|
Visibility="{Binding IsJST,ConverterParameter=true:Collapsed:Visible,Converter={StaticResource objConverter}}"/> |
|
|
<ComboBox x:Name="cbx_stroeList" Grid.Row="4" Grid.Column="1" Height="30" |
|
|
<ComboBox x:Name="cbx_stroeList" Grid.Row="4" Grid.Column="1" Height="30" |
|
|
Margin="5,0,10,0" |
|
|
Margin="5,0,10,0" |
|
|
DisplayMemberPath="Name" |
|
|
DisplayMemberPath="Name" |
|
|
VerticalContentAlignment="Center"/> |
|
|
VerticalContentAlignment="Center" |
|
|
|
|
|
Visibility="{Binding IsJST,ConverterParameter=true:Collapsed:Visible,Converter={StaticResource objConverter}}"/> |
|
|
|
|
|
|
|
|
<c:BButton x:Name="btn_save" Content="保存" Width="80" HorizontalAlignment="Right" Grid.Row="5" |
|
|
<c:BButton x:Name="btn_save" Content="保存" Width="80" HorizontalAlignment="Right" Grid.Row="5" |
|
|
Margin="0,0,5,0" Click="btn_save_Click" |
|
|
Margin="0,0,5,0" Click="btn_save_Click" |
|
|