|
|
|
@ -152,7 +152,7 @@
|
|
|
|
|
<Border Grid.Row="1" Grid.Column="1" BorderBrush="#0288d1" BorderThickness="1" CornerRadius="5" Margin="5">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="0.8*"/>
|
|
|
|
|
<RowDefinition Height="0.6*"/>
|
|
|
|
|
<RowDefinition Height="9*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Border Grid.Row="0" BorderBrush="#0288d1" BorderThickness="0,0,0,1" CornerRadius="0" Margin="1,1,5,5" >
|
|
|
|
@ -176,30 +176,39 @@
|
|
|
|
|
<Border Grid.Row="1" BorderBrush="#0288d1" BorderThickness="1">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="0.25*"/>
|
|
|
|
|
<RowDefinition Height="0.25*"/>
|
|
|
|
|
<RowDefinition Height="0.8*"/>
|
|
|
|
|
<RowDefinition Height="0.4*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Border Grid.Row="0" BorderBrush="#0288d1" BorderThickness="0 0 0 1">
|
|
|
|
|
<WrapPanel VerticalAlignment="Center" Margin="10 0">
|
|
|
|
|
<TextBlock Text="快捷查询" VerticalAlignment="Center" Foreground="#FFFFFF" FontSize="18"/>
|
|
|
|
|
<ItemsControl ItemsSource="{Binding Configurations}">
|
|
|
|
|
<ItemsControl.ItemsPanel>
|
|
|
|
|
<ItemsPanelTemplate>
|
|
|
|
|
<WrapPanel Orientation="Horizontal" />
|
|
|
|
|
</ItemsPanelTemplate>
|
|
|
|
|
</ItemsControl.ItemsPanel>
|
|
|
|
|
<ItemsControl.ItemTemplate>
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
<RadioButton
|
|
|
|
|
Content="{Binding}"
|
|
|
|
|
Command="{Binding DataContext.RadioButtonCommand, RelativeSource={RelativeSource AncestorType=ItemsControl}}"
|
|
|
|
|
CommandParameter="{Binding}"
|
|
|
|
|
GroupName="MaterialTypeRadioButton"
|
|
|
|
|
Margin="20,10" FontSize="15" Foreground="#FFFFFF"/>
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
</ItemsControl.ItemTemplate>
|
|
|
|
|
</ItemsControl>
|
|
|
|
|
</WrapPanel>
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="0.15*"/>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<StackPanel Grid.Column="0" VerticalAlignment="Center" Margin="10 0 0 0">
|
|
|
|
|
<TextBlock Text="快捷查询" VerticalAlignment="Center" Foreground="#FFFFFF" FontSize="18" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<WrapPanel Grid.Column="1" VerticalAlignment="Center" Margin="0 5">
|
|
|
|
|
<ItemsControl ItemsSource="{Binding Configurations}">
|
|
|
|
|
<ItemsControl.ItemsPanel>
|
|
|
|
|
<ItemsPanelTemplate>
|
|
|
|
|
<WrapPanel Orientation="Horizontal" />
|
|
|
|
|
</ItemsPanelTemplate>
|
|
|
|
|
</ItemsControl.ItemsPanel>
|
|
|
|
|
<ItemsControl.ItemTemplate>
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
<RadioButton
|
|
|
|
|
Content="{Binding}"
|
|
|
|
|
Command="{Binding DataContext.RadioButtonCommand, RelativeSource={RelativeSource AncestorType=ItemsControl}}"
|
|
|
|
|
CommandParameter="{Binding}"
|
|
|
|
|
GroupName="MaterialTypeRadioButton"
|
|
|
|
|
Margin="25,0" FontSize="12" Foreground="#FFFFFF"/>
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
</ItemsControl.ItemTemplate>
|
|
|
|
|
</ItemsControl>
|
|
|
|
|
</WrapPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
</Border>
|
|
|
|
|
<Border Grid.Row="1" BorderBrush="#0288d1" BorderThickness="0">
|
|
|
|
|
<WrapPanel Grid.Row="1" VerticalAlignment="Center" Margin="10 0">
|
|
|
|
|