|
- <Window
- x:Class="BPASmartClient.DosingSystem.View.NewMaterialDeviceParView"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:Themes1="clr-namespace:Microsoft.Windows.Themes;assembly=PresentationFramework.Classic"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:BPASmartClient.DosingSystem.View"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:vm="clr-namespace:BPASmartClient.DosingSystem.ViewModel"
- Title="NewMaterialDeviceParView"
- Width="550"
- Height="450"
- AllowsTransparency="True"
- Background="{x:Null}"
- Topmost="True"
- WindowStartupLocation="CenterScreen"
- WindowStyle="None"
- mc:Ignorable="d">
-
- <Window.DataContext>
- <vm:NewMaterialDeviceParViewModel />
- </Window.DataContext>
-
- <Window.Resources>
- <ResourceDictionary>
- <ResourceDictionary.MergedDictionaries>
- <ResourceDictionary Source="/BPASmartClient.CustomResource;component/Themes/GenricStyle.xaml" />
- <ResourceDictionary Source="/BPASmartClient.CustomResource;component/Themes/MyStyle.xaml" />
-
- <ResourceDictionary>
- <!--#region ListBox样式-->
- <Style x:Key="ListBoxItemStyle1" TargetType="{x:Type ListBoxItem}">
- <Setter Property="OverridesDefaultStyle" Value="True" />
- <Setter Property="SnapsToDevicePixels" Value="True" />
- <Setter Property="BorderBrush" Value="{x:Null}" />
- <Setter Property="Foreground" Value="White" />
- <Setter Property="FontSize" Value="20" />
- <Setter Property="HorizontalContentAlignment" Value="Center" />
- <Setter Property="VerticalContentAlignment" Value="Center" />
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type ListBoxItem}">
- <Border x:Name="border" CornerRadius="8">
- <ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" />
- </Border>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
- <!--#endregion-->
-
- <!--#region Combox 样式-->
- <Style x:Key="ComboBoxStyle1" TargetType="{x:Type ComboBox}">
- <Setter Property="FocusVisualStyle" Value="{StaticResource ComboBoxFocusVisual}" />
- <Setter Property="Foreground" Value="{DynamicResource foreground}" />
- <Setter Property="Background" Value="Transparent" />
- <Setter Property="BorderBrush" Value="{DynamicResource borderBrush}" />
- <Setter Property="BorderThickness" Value="1" />
- <Setter Property="Margin" Value="0,0,0,0" />
- <Setter Property="Padding" Value="0" />
- <Setter Property="Height" Value="24" />
- <Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Auto" />
- <Setter Property="ScrollViewer.VerticalScrollBarVisibility" Value="Auto" />
- <Setter Property="ScrollViewer.CanContentScroll" Value="true" />
- <Setter Property="ScrollViewer.PanningMode" Value="Both" />
- <Setter Property="Stylus.IsFlicksEnabled" Value="False" />
- <Setter Property="VerticalContentAlignment" Value="Center" />
- <Setter Property="IsTextSearchCaseSensitive" Value="true" />
- <Setter Property="IsEditable" Value="true" />
- <Setter Property="StaysOpenOnEdit" Value="true" />
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type ComboBox}">
- <Border
- Background="{TemplateBinding Background}"
- BorderBrush="{TemplateBinding BorderBrush}"
- BorderThickness="{TemplateBinding BorderThickness}"
- SnapsToDevicePixels="true">
- <Grid>
- <Themes1:ClassicBorderDecorator
- x:Name="Border"
- BorderBrush="{x:Static Themes1:ClassicBorderDecorator.ClassicBorderBrush}"
- BorderStyle="None"
- BorderThickness="2">
- <Popup
- x:Name="PART_Popup"
- AllowsTransparency="true"
- Focusable="False"
- IsOpen="{TemplateBinding IsDropDownOpen}"
- Placement="Bottom"
- PopupAnimation="{DynamicResource {x:Static SystemParameters.ComboBoxPopupAnimationKey}}">
- <Themes1:SystemDropShadowChrome
- x:Name="Shdw"
- MinWidth="{Binding ActualWidth, ElementName=Border}"
- MaxHeight="{TemplateBinding MaxDropDownHeight}"
- Color="Transparent">
- <Border
- x:Name="DropDownBorder"
- BorderBrush="{DynamicResource {x:Static SystemColors.WindowFrameBrushKey}}"
- BorderThickness="1">
- <Border.Background>
- <SolidColorBrush Color="#264c73" />
- </Border.Background>
- <ScrollViewer x:Name="DropDownScrollViewer">
- <Grid RenderOptions.ClearTypeHint="Enabled">
- <Canvas
- Width="0"
- Height="0"
- HorizontalAlignment="Left"
- VerticalAlignment="Top">
- <Rectangle
- x:Name="OpaqueRect"
- Width="{Binding ActualWidth, ElementName=DropDownBorder}"
- Height="{Binding ActualHeight, ElementName=DropDownBorder}"
- Fill="{Binding Background, ElementName=DropDownBorder}" />
- </Canvas>
- <ItemsPresenter
- x:Name="ItemsPresenter"
- KeyboardNavigation.DirectionalNavigation="Contained"
- SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
- </Grid>
- </ScrollViewer>
- </Border>
- </Themes1:SystemDropShadowChrome>
- </Popup>
- </Themes1:ClassicBorderDecorator>
- <DockPanel Margin="2">
- <FrameworkElement Width="{DynamicResource {x:Static SystemParameters.VerticalScrollBarWidthKey}}" DockPanel.Dock="Right" />
- <Border x:Name="SelectedItemBorder" Margin="{TemplateBinding Padding}">
- <ContentPresenter
- Margin="1,1,1,1"
- HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
- VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
- Content="{TemplateBinding SelectionBoxItem}"
- ContentStringFormat="{TemplateBinding SelectionBoxItemStringFormat}"
- ContentTemplate="{TemplateBinding SelectionBoxItemTemplate}"
- ContentTemplateSelector="{TemplateBinding ItemTemplateSelector}"
- SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
- </Border>
- </DockPanel>
- <ToggleButton
- Width="Auto"
- MinWidth="0"
- MinHeight="0"
- Margin="2"
- ClickMode="Press"
- Focusable="false"
- IsChecked="{Binding IsDropDownOpen, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}"
- Style="{StaticResource ComboBoxTransparentButtonStyle}" />
- </Grid>
- </Border>
- <ControlTemplate.Triggers>
- <MultiTrigger>
- <MultiTrigger.Conditions>
- <Condition Property="IsDropDownOpen" Value="false" />
- </MultiTrigger.Conditions>
- <Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.HighlightTextBrushKey}}" />
- </MultiTrigger>
- <Trigger Property="HasItems" Value="false">
- <Setter TargetName="DropDownBorder" Property="MinHeight" Value="95" />
- </Trigger>
- <Trigger Property="IsEnabled" Value="false">
- <Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.GrayTextBrushKey}}" />
- <Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.ControlBrushKey}}" />
- </Trigger>
- <MultiTrigger>
- <MultiTrigger.Conditions>
- <Condition Property="IsGrouping" Value="true" />
- <Condition Property="VirtualizingPanel.IsVirtualizingWhenGrouping" Value="false" />
- </MultiTrigger.Conditions>
- <Setter Property="ScrollViewer.CanContentScroll" Value="false" />
- </MultiTrigger>
- <Trigger SourceName="PART_Popup" Property="HasDropShadow" Value="true">
- <Setter TargetName="Shdw" Property="Margin" Value="0,0,5,5" />
- <Setter TargetName="Shdw" Property="Color" Value="#71000000" />
- </Trigger>
- <Trigger SourceName="DropDownScrollViewer" Property="ScrollViewer.CanContentScroll" Value="false">
- <Setter TargetName="OpaqueRect" Property="Canvas.Top" Value="{Binding VerticalOffset, ElementName=DropDownScrollViewer}" />
- <Setter TargetName="OpaqueRect" Property="Canvas.Left" Value="{Binding HorizontalOffset, ElementName=DropDownScrollViewer}" />
- </Trigger>
- </ControlTemplate.Triggers>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- <Style.Triggers>
- <Trigger Property="IsEditable" Value="true">
- <Setter Property="IsTabStop" Value="false" />
- <Setter Property="Padding" Value="1" />
- <Setter Property="Template" Value="{StaticResource ComboBoxEditableTemplate}" />
- </Trigger>
- </Style.Triggers>
- </Style>
- <!--#endregion-->
-
- </ResourceDictionary>
- </ResourceDictionary.MergedDictionaries>
- </ResourceDictionary>
- </Window.Resources>
-
- <Border
- Name="br"
- BorderBrush="#0CADF5"
- BorderThickness="2">
- <Border.Background>
- <ImageBrush ImageSource="/BPASmartClient.CustomResource;component/Image/bg.png" />
- </Border.Background>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="5" />
- <RowDefinition />
- </Grid.RowDefinitions>
-
- <Grid Grid.Row="1">
- <Grid.RowDefinitions>
- <RowDefinition Height="40" />
- <RowDefinition />
- </Grid.RowDefinitions>
-
- <TextBlock
- Margin="0,0,10,0"
- HorizontalAlignment="Right"
- Background="Transparent"
- FontSize="16"
- Foreground="Red"
- Text="{Binding ErrorInfo}" />
-
- <Grid Grid.Row="1" Margin="5">
- <Grid.RowDefinitions>
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- </Grid.RowDefinitions>
-
- <Grid.ColumnDefinitions>
- <ColumnDefinition />
- <ColumnDefinition />
- <ColumnDefinition />
- </Grid.ColumnDefinitions>
-
- <!--#region 请输入原料名称-->
- <TextBlock
- Grid.Column="0"
- HorizontalAlignment="Right"
- Background="Transparent"
- FontSize="20"
- Foreground="#FF2AB2E7"
- Text="请输入原料名称:" />
-
- <!--<TextBox
- Grid.Column="1"
- Margin="3"
- Style="{StaticResource TextBoxStyle}"
- Text="{Binding RawMaterialName}" />-->
-
- <ComboBox
- Grid.Column="1"
- Margin="3"
- FontSize="14"
- ItemsSource="{Binding DataContext.materialNames, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=ItemsControl}}"
- KeyUp="ComboBox_KeyUp"
- LostFocus="ComboBox_LostFocus"
- Style="{StaticResource ComboBoxStyle1}"
- Text="{Binding MaterialName}">
- <ComboBox.ItemContainerStyle>
- <Style TargetType="{x:Type ComboBoxItem}">
- <Setter Property="Background" Value="White" />
- <Setter Property="Foreground" Value="#e69519" />
- </Style>
- </ComboBox.ItemContainerStyle>
- </ComboBox>
-
-
- <StackPanel Grid.Column="2" Orientation="Horizontal">
- <Button
- Width="80"
- Height="30"
- Command="{Binding SaveCommand}"
- Content="确认" />
-
- <Button
- Name="btClose"
- Width="80"
- Height="30"
- Margin="7,0,0,0"
- Content="取消" />
- </StackPanel>
- <!--#endregion-->
-
- <!--#region 慢加重量-->
- <TextBlock
- Grid.Row="1"
- Grid.Column="0"
- HorizontalAlignment="Right"
- Background="Transparent"
- FontSize="20"
- Foreground="#FF2AB2E7"
- Text="慢加重量:" />
-
- <TextBox
- Grid.Row="1"
- Grid.Column="1"
- Margin="3"
- Style="{StaticResource TextBoxStyle}"
- Text="{Binding RawMaterialName}" />
-
- <TextBlock
- Grid.Row="1"
- Grid.Column="2"
- Margin="5,0,0,0"
- HorizontalAlignment="Left"
- Background="Transparent"
- FontSize="20"
- Foreground="#FF2AB2E7"
- Text="g" />
- <!--#endregion-->
-
- <!--#region 提前关阀重量-->
- <TextBlock
- Grid.Row="2"
- Grid.Column="0"
- HorizontalAlignment="Right"
- Background="Transparent"
- FontSize="20"
- Foreground="#FF2AB2E7"
- Text="提前关阀重量:" />
-
- <TextBox
- Grid.Row="2"
- Grid.Column="1"
- Margin="3"
- Style="{StaticResource TextBoxStyle}"
- Text="{Binding RawMaterialName}" />
-
- <TextBlock
- Grid.Row="2"
- Grid.Column="2"
- Margin="5,0,0,0"
- HorizontalAlignment="Left"
- Background="Transparent"
- FontSize="20"
- Foreground="#FF2AB2E7"
- Text="g" />
- <!--#endregion-->
-
- <!--#region 快加速度-->
- <TextBlock
- Grid.Row="3"
- Grid.Column="0"
- HorizontalAlignment="Right"
- Background="Transparent"
- FontSize="20"
- Foreground="#FF2AB2E7"
- Text="快加速度:" />
-
- <TextBox
- Grid.Row="3"
- Grid.Column="1"
- Margin="3"
- Style="{StaticResource TextBoxStyle}"
- Text="{Binding RawMaterialName}" />
-
- <TextBlock
- Grid.Row="3"
- Grid.Column="2"
- Margin="5,0,0,0"
- HorizontalAlignment="Left"
- Background="Transparent"
- FontSize="20"
- Foreground="#FF2AB2E7"
- Text="单位" />
- <!--#endregion-->
-
- <!--#region 慢加速度-->
- <TextBlock
- Grid.Row="4"
- Grid.Column="0"
- HorizontalAlignment="Right"
- Background="Transparent"
- FontSize="20"
- Foreground="#FF2AB2E7"
- Text="慢加速度:" />
-
- <TextBox
- Grid.Row="4"
- Grid.Column="1"
- Margin="3"
- Style="{StaticResource TextBoxStyle}"
- Text="{Binding RawMaterialName}" />
-
- <TextBlock
- Grid.Row="4"
- Grid.Column="2"
- Margin="5,0,0,0"
- HorizontalAlignment="Left"
- Background="Transparent"
- FontSize="20"
- Foreground="#FF2AB2E7"
- Text="单位" />
- <!--#endregion-->
-
- <!--#region 伺服手动速度-->
- <TextBlock
- Grid.Row="5"
- Grid.Column="0"
- HorizontalAlignment="Right"
- Background="Transparent"
- FontSize="20"
- Foreground="#FF2AB2E7"
- Text="伺服手动速度:" />
-
- <TextBox
- Grid.Row="5"
- Grid.Column="1"
- Margin="3"
- Style="{StaticResource TextBoxStyle}"
- Text="{Binding RawMaterialName}" />
-
- <TextBlock
- Grid.Row="5"
- Grid.Column="2"
- Margin="5,0,0,0"
- HorizontalAlignment="Left"
- Background="Transparent"
- FontSize="20"
- Foreground="#FF2AB2E7"
- Text="单位" />
- <!--#endregion-->
-
- <!--#region 料仓上限重量-->
- <TextBlock
- Grid.Row="6"
- Grid.Column="0"
- HorizontalAlignment="Right"
- Background="Transparent"
- FontSize="20"
- Foreground="#FF2AB2E7"
- Text="料仓上限重量:" />
-
- <TextBox
- Grid.Row="6"
- Grid.Column="1"
- Margin="3"
- Style="{StaticResource TextBoxStyle}"
- Text="{Binding RawMaterialName}" />
-
- <TextBlock
- Grid.Row="6"
- Grid.Column="2"
- Margin="5,0,0,0"
- HorizontalAlignment="Left"
- Background="Transparent"
- FontSize="20"
- Foreground="#FF2AB2E7"
- Text="g" />
- <!--#endregion-->
-
- <!--#region 料仓下限重量-->
- <TextBlock
- Grid.Row="7"
- Grid.Column="0"
- HorizontalAlignment="Right"
- Background="Transparent"
- FontSize="20"
- Foreground="#FF2AB2E7"
- Text="料仓下限重量:" />
-
- <TextBox
- Grid.Row="7"
- Grid.Column="1"
- Margin="3"
- Style="{StaticResource TextBoxStyle}"
- Text="{Binding RawMaterialName}" />
-
- <TextBlock
- Grid.Row="7"
- Grid.Column="2"
- Margin="5,0,0,0"
- HorizontalAlignment="Left"
- Background="Transparent"
- FontSize="20"
- Foreground="#FF2AB2E7"
- Text="g" />
- <!--#endregion-->
-
- <!--#region 搅拌速度-->
- <TextBlock
- Grid.Row="8"
- Grid.Column="0"
- HorizontalAlignment="Right"
- Background="Transparent"
- FontSize="20"
- Foreground="#FF2AB2E7"
- Text="搅拌速度:" />
-
- <TextBox
- Grid.Row="8"
- Grid.Column="1"
- Margin="3"
- Style="{StaticResource TextBoxStyle}"
- Text="{Binding RawMaterialName}" />
-
- <TextBlock
- Grid.Row="8"
- Grid.Column="2"
- Margin="5,0,0,0"
- HorizontalAlignment="Left"
- Background="Transparent"
- FontSize="20"
- Foreground="#FF2AB2E7"
- Text="单位" />
- <!--#endregion-->
-
-
- </Grid>
- </Grid>
-
- </Grid>
- </Border>
- </Window>
|