|
@ -12,7 +12,14 @@ |
|
|
mc:Ignorable="d" |
|
|
mc:Ignorable="d" |
|
|
d:DesignHeight="769" d:DesignWidth="1024" |
|
|
d:DesignHeight="769" d:DesignWidth="1024" |
|
|
DataContext="{Binding ExportOrderSkuVM,Source={StaticResource Locator}}" |
|
|
DataContext="{Binding ExportOrderSkuVM,Source={StaticResource Locator}}" |
|
|
Title="ExportOrderSkuView"> |
|
|
Title="ExportOrderSkuView" |
|
|
|
|
|
xmlns:converter="clr-namespace:HandyControl.Tools.Converter;assembly=HandyControl" |
|
|
|
|
|
xmlns:interactivity="clr-namespace:HandyControl.Interactivity;assembly=HandyControl" |
|
|
|
|
|
xmlns:ex="clr-namespace:HandyControl.Tools.Extension;assembly=HandyControl" |
|
|
|
|
|
xmlns:langs="clr-namespace:HandyControl.Properties.Langs;assembly=HandyControl"> |
|
|
|
|
|
<Page.Resources> |
|
|
|
|
|
|
|
|
|
|
|
</Page.Resources> |
|
|
<Grid> |
|
|
<Grid> |
|
|
<c:RoundWaitProgress Play="{Binding IsLoading}" Panel.ZIndex="999"/> |
|
|
<c:RoundWaitProgress Play="{Binding IsLoading}" Panel.ZIndex="999"/> |
|
|
<Grid Margin="5,0"> |
|
|
<Grid Margin="5,0"> |
|
@ -34,66 +41,58 @@ |
|
|
</ResourceDictionary> |
|
|
</ResourceDictionary> |
|
|
</Grid.Resources> |
|
|
</Grid.Resources> |
|
|
<StackPanel Orientation="Horizontal" VerticalAlignment="Center" Margin="5,0"> |
|
|
<StackPanel Orientation="Horizontal" VerticalAlignment="Center" Margin="5,0"> |
|
|
|
|
|
<Grid> |
|
|
<hc:CheckComboBox IsTextSearchEnabled="True" ItemsSource="{Binding DepartmentList}" |
|
|
<hc:CheckComboBox IsTextSearchEnabled="True" ItemsSource="{Binding DepartmentList}" |
|
|
ShowClearButton="True" |
|
|
ShowClearButton="True" |
|
|
MinWidth="150" |
|
|
MinWidth="150" |
|
|
Height="30"> |
|
|
Height="30"> |
|
|
<hc:CheckComboBox.ItemTemplate> |
|
|
<hc:CheckComboBox.ItemTemplate> |
|
|
<DataTemplate> |
|
|
<DataTemplate> |
|
|
<StackPanel Orientation="Horizontal" Margin="5,2.5"> |
|
|
<StackPanel Orientation="Horizontal" Margin="5,2.5"> |
|
|
<CheckBox Content="{Binding Name}" IsChecked="{Binding IsSelected,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/> |
|
|
<CheckBox Content="{Binding Name}" IsChecked="{Binding IsSelected,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/> |
|
|
</StackPanel> |
|
|
</StackPanel> |
|
|
</DataTemplate> |
|
|
</DataTemplate> |
|
|
</hc:CheckComboBox.ItemTemplate> |
|
|
</hc:CheckComboBox.ItemTemplate> |
|
|
<hc:CheckComboBox.ItemContainerStyle> |
|
|
<hc:CheckComboBox.ItemContainerStyle> |
|
|
<Style TargetType="{x:Type hc:CheckComboBoxItem}" BasedOn="{StaticResource NoBgListBoxItemStyle}"> |
|
|
<Style TargetType="{x:Type hc:CheckComboBoxItem}" BasedOn="{StaticResource NoBgListBoxItemStyle}"> |
|
|
<Setter Property="IsSelected" Value="{Binding IsSelected,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/> |
|
|
<Setter Property="IsSelected" Value="{Binding IsSelected,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/> |
|
|
</Style> |
|
|
</Style> |
|
|
</hc:CheckComboBox.ItemContainerStyle> |
|
|
</hc:CheckComboBox.ItemContainerStyle> |
|
|
</hc:CheckComboBox> |
|
|
</hc:CheckComboBox> |
|
|
|
|
|
<TextBlock Text="全部" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="5,0,0,0" |
|
|
|
|
|
Visibility="{Binding IsShowAll_Department,ConverterParameter=true:Visible:Collapsed,Converter={StaticResource objConverter}}"/> |
|
|
|
|
|
</Grid> |
|
|
|
|
|
|
|
|
<hc:CheckComboBox IsTextSearchEnabled="True" ItemsSource="{Binding ShopList}" |
|
|
<Grid> |
|
|
|
|
|
<hc:CheckComboBox IsTextSearchEnabled="True" ItemsSource="{Binding ShopList}" |
|
|
ShowClearButton="True" |
|
|
ShowClearButton="True" |
|
|
MinWidth="150" |
|
|
MinWidth="150" |
|
|
Margin="5,0,0,0"> |
|
|
Margin="5,0,0,0"> |
|
|
<hc:CheckComboBox.ItemTemplate> |
|
|
<hc:CheckComboBox.ItemTemplate> |
|
|
<DataTemplate> |
|
|
<DataTemplate> |
|
|
<StackPanel Orientation="Horizontal" Margin="5,2.5"> |
|
|
<StackPanel Orientation="Horizontal" Margin="5,2.5"> |
|
|
<CheckBox Content="{Binding ShopName}" IsChecked="{Binding IsSelected,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/> |
|
|
<CheckBox Content="{Binding ShopName}" IsChecked="{Binding IsSelected,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/> |
|
|
</StackPanel> |
|
|
</StackPanel> |
|
|
</DataTemplate> |
|
|
</DataTemplate> |
|
|
</hc:CheckComboBox.ItemTemplate> |
|
|
</hc:CheckComboBox.ItemTemplate> |
|
|
<hc:CheckComboBox.ItemContainerStyle> |
|
|
<hc:CheckComboBox.ItemContainerStyle> |
|
|
<Style TargetType="{x:Type hc:CheckComboBoxItem}" BasedOn="{StaticResource NoBgListBoxItemStyle}"> |
|
|
<Style TargetType="{x:Type hc:CheckComboBoxItem}" BasedOn="{StaticResource NoBgListBoxItemStyle}"> |
|
|
<Setter Property="IsSelected" Value="{Binding IsSelected,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/> |
|
|
<Setter Property="IsSelected" Value="{Binding IsSelected,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/> |
|
|
</Style> |
|
|
</Style> |
|
|
</hc:CheckComboBox.ItemContainerStyle> |
|
|
</hc:CheckComboBox.ItemContainerStyle> |
|
|
</hc:CheckComboBox> |
|
|
</hc:CheckComboBox> |
|
|
|
|
|
<TextBlock Text="全部" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0" |
|
|
|
|
|
Visibility="{Binding IsShowAll_Shop,ConverterParameter=true:Visible:Collapsed,Converter={StaticResource objConverter}}"/> |
|
|
|
|
|
</Grid> |
|
|
|
|
|
|
|
|
<hc:CheckComboBox IsTextSearchEnabled="True" ItemsSource="{Binding PlatformList}" |
|
|
<!--<hc:CheckComboBox IsTextSearchEnabled="True" ItemsSource="{Binding PlatformList}" |
|
|
ShowClearButton="True" |
|
|
ShowClearButton="True" |
|
|
MinWidth="150" |
|
|
MinWidth="150" |
|
|
Margin="5,0,0,0" |
|
|
Margin="5,0,0,0" |
|
|
SelectionMode="Single" |
|
|
SelectionMode="Single" |
|
|
SelectedItem="{Binding SelectedPlatform,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" |
|
|
SelectedItem="{Binding SelectedPlatform,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" |
|
|
DisplayMemberPath="Key"> |
|
|
DisplayMemberPath="Key"> |
|
|
<!--<hc:CheckComboBox.ItemTemplate> |
|
|
</hc:CheckComboBox>--> |
|
|
<DataTemplate> |
|
|
|
|
|
<StackPanel Orientation="Horizontal" Margin="5,2.5"> |
|
|
|
|
|
--> |
|
|
|
|
|
<!--<CheckBox Content="{Binding Key}" IsChecked="{Binding IsSelected,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/>--> |
|
|
|
|
|
<!-- |
|
|
|
|
|
<TextBlock Text="{Binding Key}"/> |
|
|
|
|
|
</StackPanel> |
|
|
|
|
|
</DataTemplate> |
|
|
|
|
|
</hc:CheckComboBox.ItemTemplate>--> |
|
|
|
|
|
<!--<hc:CheckComboBox.ItemContainerStyle> |
|
|
|
|
|
<Style TargetType="{x:Type hc:CheckComboBoxItem}" BasedOn="{StaticResource NoBgListBoxItemStyle}"> |
|
|
|
|
|
<Setter Property="IsSelected" Value="{Binding IsSelected,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/> |
|
|
|
|
|
</Style> |
|
|
|
|
|
</hc:CheckComboBox.ItemContainerStyle>--> |
|
|
|
|
|
</hc:CheckComboBox> |
|
|
|
|
|
|
|
|
|
|
|
<DatePicker Height="30" Margin="5,0,0,0" SelectedDate="{Binding StartDate,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/> |
|
|
<DatePicker Height="30" Margin="5,0,0,0" SelectedDate="{Binding StartDate,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/> |
|
|
<DatePicker Height="30" Margin="5,0,0,0" SelectedDate="{Binding EndDate,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/> |
|
|
<DatePicker Height="30" Margin="5,0,0,0" SelectedDate="{Binding EndDate,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/> |
|
|