|
- <UserControl x:Class="BPASmartClient.JXJFoodSmallStation.View.BomOfMaterialView"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:con="clr-namespace:BPASmartClient.JXJFoodSmallStation.Converter"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:pry="clr-namespace:BPASmartClient.CustomResource.UserControls;assembly=BPASmartClient.CustomResource"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:vm="clr-namespace:BPASmartClient.JXJFoodSmallStation.ViewModel"
- mc:Ignorable="d"
- d:DesignHeight="1080" d:DesignWidth="1920">
- <UserControl.DataContext>
- <vm:BomOfMaterialViewModel />
- </UserControl.DataContext>
- <UserControl.Resources>
- <SolidColorBrush x:Key="tabColor" Color="#FF2AB2E7" />
- <!--<SolidColorBrush x:Key="bordColor" Color="#33ffffff" />-->
- <SolidColorBrush x:Key="bordColor" Color="#332AB2E7" />
- <con:DataTableRedundantConverter x:Key="tabConvert" />
-
- <Style x:Key="RowRadioButtonStyle" TargetType="{x:Type RadioButton}">
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type RadioButton}">
- <Border
- x:Name="NvaBor"
- Background="Transparent"
- BorderBrush="#FF2AB2E7"
- BorderThickness="0">
- <ContentControl
- Margin="10,4"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- HorizontalContentAlignment="Center"
- VerticalContentAlignment="Center"
- Content="{TemplateBinding Content}"
- FontSize="16" />
- </Border>
- <ControlTemplate.Triggers>
- <Trigger Property="IsChecked" Value="True">
- <Setter TargetName="NvaBor" Property="Background" Value="#22ffffff" />
- <Setter TargetName="NvaBor" Property="BorderThickness" Value="0" />
- </Trigger>
- <MultiTrigger>
- <MultiTrigger.Conditions>
- <Condition Property="IsChecked" Value="false" />
- <Condition Property="IsMouseOver" Value="True" />
- </MultiTrigger.Conditions>
- <MultiTrigger.Setters>
- <Setter TargetName="NvaBor" Property="Background" Value="#22ffffff" />
- </MultiTrigger.Setters>
- </MultiTrigger>
- </ControlTemplate.Triggers>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
-
- <Style x:Key="InputTextboxStyle" TargetType="TextBox">
- <Setter Property="Margin" Value="5,0,0,0" />
- <Setter Property="BorderThickness" Value="0" />
- <Setter Property="HorizontalAlignment" Value="Left" />
- <Setter Property="Width" Value="150" />
- <Setter Property="Height" Value="40" />
- <Setter Property="CaretBrush" Value="{StaticResource TitleBorderColor}" />
- <Setter Property="Foreground" Value="{StaticResource TitleBorderColor}" />
- <Setter Property="VerticalContentAlignment" Value="Center" />
- <Setter Property="FontSize" Value="14" />
- <Setter Property="Background" Value="Transparent" />
- <Setter Property="VerticalAlignment" Value="Center" />
- </Style>
-
- <Style x:Key="ControlButtonStyle" TargetType="Button">
- <Setter Property="Margin" Value="0" />
- <Setter Property="FontSize" Value="18" />
- <Setter Property="Foreground" Value="#FFF53F62" />
- <Setter Property="FontWeight" Value="SemiBold" />
- <Setter Property="FontFamily" Value="楷体" />
- <Setter Property="VerticalContentAlignment" Value="Center" />
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="Button">
- <Border
- Name="TitleBarBr"
- BorderBrush="#00c2f4"
- BorderThickness="0"
- CornerRadius="0"
- Opacity="0.8">
-
- <ContentPresenter
- Margin="{TemplateBinding Margin}"
- HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
- VerticalAlignment="{TemplateBinding VerticalContentAlignment}" />
- <Border.Background>
- <ImageBrush
- ImageSource="/BPASmartClient.CustomResource;component/Image/组合边框1.1.png"
- Opacity="0.8"
- Stretch="Fill" />
- </Border.Background>
-
- </Border>
- <ControlTemplate.Triggers>
- <Trigger Property="IsMouseOver" Value="true">
- <Setter TargetName="TitleBarBr" Property="Opacity" Value="1" />
- </Trigger>
- </ControlTemplate.Triggers>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
-
- <Style x:Key="TitleTextblockStyle" TargetType="TextBlock">
- <Setter Property="FontSize" Value="16" />
- <Setter Property="HorizontalAlignment" Value="Center" />
- <Setter Property="VerticalAlignment" Value="Center" />
- <Setter Property="Foreground" Value="{StaticResource tabColor}" />
- <Setter Property="FontFamily" Value="楷体" />
- <Setter Property="FontWeight" Value="SemiBold" />
- </Style>
-
- </UserControl.Resources>
-
- <Grid Margin="10">
- <Grid.RowDefinitions>
- <RowDefinition Height="60" />
- <RowDefinition Height="40" />
- <RowDefinition />
- </Grid.RowDefinitions>
- <!--#region 表格标题栏设置-->
- <Grid>
- <StackPanel HorizontalAlignment="Right" Orientation="Horizontal">
- <Button
- Height="50"
- Margin="5"
- Command="{Binding GetBomMaterialData}"
- Content="拉取本地数据"
- FontSize="28"
- Foreground="Aqua"
- Style="{StaticResource ImageButtonStyle}" />
- <Button
- Height="50"
- Margin="5"
- Command="{Binding DeleteAllMaterial}"
- Content="删除所有数据"
- FontSize="28"
- Foreground="Aqua"
- Style="{StaticResource ImageButtonStyle}" />
- <Button
- Height="50"
- Margin="5"
- Command="{Binding AddMaterial}"
- Content="新增数据"
- FontSize="28"
- Foreground="Aqua"
- Style="{StaticResource ImageButtonStyle}" />
- <Button
- Height="50"
- Margin="5"
- Command="{Binding SaveMaterials}"
- Content="保存参数"
- FontSize="28"
- Foreground="Aqua"
- Style="{StaticResource ImageButtonStyle}" />
- </StackPanel>
-
- </Grid>
- <Grid
- Grid.Row="1"
- Margin="0,10,0,0"
- Background="#ff0C255F">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="1*"/>
- <ColumnDefinition Width="1*"/>
- <ColumnDefinition Width="1*"/>
- <ColumnDefinition Width="1*"/>
- </Grid.ColumnDefinitions>
- <Grid Grid.Column="0">
- <TextBlock Text="序号" FontSize="24" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="Aqua"/>
- <!--<Border BorderThickness="1,1,1,1" Cursor="SizeWE"
- BorderBrush="{StaticResource bordColor}" />-->
- </Grid>
- <TextBlock Grid.Column="1" FontSize="24" Text="原料编号" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="Aqua" />
- <TextBlock Grid.Column="2" FontSize="24" Text="原料名称" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="Aqua" />
- <TextBlock Grid.Column="3" FontSize="24" Text="操作" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="Aqua" />
- </Grid>
- <Grid Grid.Row="2">
- <ScrollViewer HorizontalScrollBarVisibility="Hidden" VerticalScrollBarVisibility="Visible" >
- <ItemsControl ItemsSource="{Binding RawMaterialInfo}" Foreground="Aqua">
- <ItemsControl.ItemTemplate>
- <DataTemplate>
- <Grid Name="gr" >
- <Grid.ColumnDefinitions>
- <ColumnDefinition />
- <ColumnDefinition />
- <ColumnDefinition />
- <ColumnDefinition />
- </Grid.ColumnDefinitions>
- <Grid Grid.Column="0" Margin="5">
- <TextBlock
- FontSize="16"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Text="{Binding Count}" />
- </Grid>
- <Grid Grid.Column="1" Margin="5">
- <TextBox
- Width="50"
- FontSize="16"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Text="{Binding MaterialCode}" />
- </Grid>
- <Grid Grid.Column="2" Margin="5">
- <TextBox
- Width="200"
- FontSize="16"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Text="{Binding MaterialName}" />
- </Grid>
- <Grid Grid.Column="3" Margin="5">
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
- <pry:IcoButton
- Margin="3,4,4,0"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Background="#11F53F62"
- BorderThickness="0"
- Command="{Binding DataContext.RemoveCommand, RelativeSource={RelativeSource AncestorType=ItemsControl, Mode=FindAncestor}}"
- CommandParameter="{Binding Count}"
- Content="删除"
- EnterBackground="#22F53F62"
- Foreground="#FFF53F62"
- IcoText=""
- Style="{StaticResource IcoButtonStyle}" />
- </StackPanel>
- </Grid>
- </Grid>
-
- <DataTemplate.Triggers>
- <Trigger Property="IsMouseOver" Value="true">
- <Setter TargetName="gr" Property="Background" Value="#112AB2E7" />
- </Trigger>
- </DataTemplate.Triggers>
- </DataTemplate>
- </ItemsControl.ItemTemplate>
- </ItemsControl>
- </ScrollViewer>
- </Grid>
- </Grid>
- </UserControl>
|