|
- <UserControl
- x:Class="BPASmartClient.CustomResource.Pages.View.VariableConfigView"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:BPASmartClient.CustomResource.Pages.View"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:theme="clr-namespace:Microsoft.Windows.Themes;assembly=PresentationFramework.Aero2"
- xmlns:vm="clr-namespace:BPASmartClient.CustomResource.Pages.ViewModel"
- d:DesignHeight="450"
- d:DesignWidth="800"
- mc:Ignorable="d">
- <UserControl.DataContext>
- <vm:VariableViewModel />
- </UserControl.DataContext>
- <UserControl.Resources>
-
- <Style x:Key="dataGrid" TargetType="DataGrid">
- <Setter Property="HorizontalGridLinesBrush" Value="#FF2AB2E7" />
- <Setter Property="VerticalGridLinesBrush" Value="#FF2AB2E7" />
- <Setter Property="BorderThickness" Value="1" />
- <Setter Property="BorderBrush" Value="#FF2AB2E7" />
- <Setter Property="CanUserResizeColumns" Value="False" />
- <Setter Property="HeadersVisibility" Value="Column" />
- <Setter Property="HorizontalScrollBarVisibility" Value="Hidden" />
- <Setter Property="VerticalScrollBarVisibility" Value="Hidden" />
- </Style>
- <Style x:Key="ColumHeaderStyle" TargetType="DataGridColumnHeader">
- <Setter Property="HorizontalContentAlignment" Value="Center" />
- <Setter Property="VerticalAlignment" Value="Center" />
- <Setter Property="Background" Value="#FF2AB2E7" />
- <Setter Property="Foreground" Value="White" />
- <Setter Property="BorderThickness" Value="1" />
- <Setter Property="BorderBrush" Value="white" />
- <Setter Property="Height" Value="30" />
- <Setter Property="FontSize" Value="16" />
- <Setter Property="FontWeight" Value="Heavy" />
- <Setter Property="Margin" Value="-1,-1,-1,-1" />
- </Style>
-
- <Style x:Key="rowStyle" TargetType="DataGridRow">
- <Setter Property="Height" Value="35" />
- <Setter Property="Foreground" Value="#FF2AB2E7" />
- <Style.Triggers>
- <Trigger Property="AlternationIndex" Value="0">
- <Setter Property="Background" Value="Transparent" />
- </Trigger>
- <Trigger Property="AlternationIndex" Value="1">
- <Setter Property="Background" Value="Transparent" />
- </Trigger>
- <Trigger Property="IsMouseOver" Value="True">
- <Setter Property="Background" Value="#000066" />
- </Trigger>
- </Style.Triggers>
- </Style>
- <Style x:Key="textboxStyle" TargetType="TextBox">
- <Setter Property="Background" Value="Transparent" />
- <Setter Property="Foreground" Value="SkyBlue" />
- <Setter Property="HorizontalContentAlignment" Value="Center" />
- <Setter Property="VerticalContentAlignment" Value="Center" />
- <Setter Property="FontSize" Value="16" />
- <Setter Property="BorderThickness" Value="0" />
- <Setter Property="CaretBrush" Value="LightBlue" />
- <Style.Triggers>
- <Trigger Property="IsFocused" Value="True">
- <Setter Property="Cursor" Value="Arrow" />
- </Trigger>
- </Style.Triggers>
- </Style>
- <Style x:Key="cellStyle" TargetType="DataGridCell">
- <Style.Triggers>
- <Trigger Property="IsSelected" Value="True">
- <Setter Property="Background" Value="Transparent" />
- <Setter Property="Foreground" Value="SkyBlue" />
- </Trigger>
- <Trigger Property="IsSelected" Value="false">
- <Setter Property="Background" Value="Transparent" />
- <Setter Property="Foreground" Value="SkyBlue" />
- </Trigger>
-
- </Style.Triggers>
- </Style>
- <Style x:Key="dgCellstyle" TargetType="TextBlock">
- <Setter Property="HorizontalAlignment" Value="Center" />
- <Setter Property="VerticalAlignment" Value="Center" />
- <Setter Property="FontSize" Value="16" />
- </Style>
-
- <Style x:Key="FocusVisual">
- <Setter Property="Control.Template">
- <Setter.Value>
- <ControlTemplate>
- <Rectangle
- Margin="2"
- SnapsToDevicePixels="true"
- Stroke="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}"
- StrokeDashArray="1 2"
- StrokeThickness="1" />
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
- <SolidColorBrush x:Key="TextBox.Static.Background" Color="#FFFFFFFF" />
- <Style x:Key="ComboBoxEditableTextBox" TargetType="{x:Type TextBox}">
- <Setter Property="OverridesDefaultStyle" Value="true" />
- <Setter Property="AllowDrop" Value="true" />
- <Setter Property="MinWidth" Value="0" />
- <Setter Property="MinHeight" Value="0" />
- <Setter Property="FocusVisualStyle" Value="{x:Null}" />
- <Setter Property="ScrollViewer.PanningMode" Value="VerticalFirst" />
- <Setter Property="Stylus.IsFlicksEnabled" Value="False" />
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type TextBox}">
- <ScrollViewer
- x:Name="PART_ContentHost"
- Background="Transparent"
- Focusable="false"
- HorizontalScrollBarVisibility="Hidden"
- VerticalScrollBarVisibility="Hidden" />
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
- <LinearGradientBrush x:Key="ComboBox.Static.Background" StartPoint="0,0" EndPoint="0,1">
- <GradientStop Offset="0.0" Color="Transparent" />
- <GradientStop Offset="1.0" Color="Transparent" />
- </LinearGradientBrush>
- <SolidColorBrush x:Key="ComboBox.Static.Border" Color="#FFACACAC" />
- <SolidColorBrush x:Key="ComboBox.Static.Glyph" Color="#FF2AB2E7" />
- <SolidColorBrush x:Key="ComboBox.Static.Editable.Background" Color="Transparent" />
- <SolidColorBrush x:Key="ComboBox.Static.Editable.Border" Color="#FFABADB3" />
- <SolidColorBrush x:Key="ComboBox.Static.Editable.Button.Background" Color="Transparent" />
- <SolidColorBrush x:Key="ComboBox.Static.Editable.Button.Border" Color="Transparent" />
- <LinearGradientBrush x:Key="ComboBox.MouseOver.Background" StartPoint="0,0" EndPoint="0,1">
- <GradientStop Offset="0.0" Color="Transparent" />
- <GradientStop Offset="1.0" Color="Transparent" />
- </LinearGradientBrush>
- <SolidColorBrush x:Key="ComboBox.MouseOver.Border" Color="#FF7EB4EA" />
- <SolidColorBrush x:Key="ComboBox.MouseOver.Glyph" Color="#FF000000" />
- <SolidColorBrush x:Key="ComboBox.MouseOver.Editable.Background" Color="Transparent" />
- <SolidColorBrush x:Key="ComboBox.MouseOver.Editable.Border" Color="#FF7EB4EA" />
- <LinearGradientBrush x:Key="ComboBox.MouseOver.Editable.Button.Background" StartPoint="0,0" EndPoint="0,1">
- <GradientStop Offset="0.0" Color="Transparent" />
- <GradientStop Offset="1.0" Color="Transparent" />
- </LinearGradientBrush>
- <SolidColorBrush x:Key="ComboBox.MouseOver.Editable.Button.Border" Color="#FF7EB4EA" />
- <LinearGradientBrush x:Key="ComboBox.Pressed.Background" StartPoint="0,0" EndPoint="0,1">
- <GradientStop Offset="0.0" Color="#FFDAECFC" />
- <GradientStop Offset="1.0" Color="#FFC4E0FC" />
- </LinearGradientBrush>
- <SolidColorBrush x:Key="ComboBox.Pressed.Border" Color="#FF569DE5" />
- <SolidColorBrush x:Key="ComboBox.Pressed.Glyph" Color="#FF000000" />
- <SolidColorBrush x:Key="ComboBox.Pressed.Editable.Background" Color="#FFFFFFFF" />
- <SolidColorBrush x:Key="ComboBox.Pressed.Editable.Border" Color="#FF569DE5" />
- <LinearGradientBrush x:Key="ComboBox.Pressed.Editable.Button.Background" StartPoint="0,0" EndPoint="0,1">
- <GradientStop Offset="0.0" Color="#FFDAEBFC" />
- <GradientStop Offset="1.0" Color="#FFC4E0FC" />
- </LinearGradientBrush>
- <SolidColorBrush x:Key="ComboBox.Pressed.Editable.Button.Border" Color="#FF569DE5" />
- <SolidColorBrush x:Key="ComboBox.Disabled.Background" Color="#FFF0F0F0" />
- <SolidColorBrush x:Key="ComboBox.Disabled.Border" Color="#FFD9D9D9" />
- <SolidColorBrush x:Key="ComboBox.Disabled.Glyph" Color="#FFBFBFBF" />
- <SolidColorBrush x:Key="ComboBox.Disabled.Editable.Background" Color="#FFFFFFFF" />
- <SolidColorBrush x:Key="ComboBox.Disabled.Editable.Border" Color="#FFBFBFBF" />
- <SolidColorBrush x:Key="ComboBox.Disabled.Editable.Button.Background" Color="Transparent" />
- <SolidColorBrush x:Key="ComboBox.Disabled.Editable.Button.Border" Color="Transparent" />
- <Style x:Key="ComboBoxToggleButton" TargetType="{x:Type ToggleButton}">
- <Setter Property="OverridesDefaultStyle" Value="true" />
- <Setter Property="IsTabStop" Value="false" />
- <Setter Property="Focusable" Value="false" />
- <Setter Property="ClickMode" Value="Press" />
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type ToggleButton}">
- <Border
- x:Name="templateRoot"
- Background="{StaticResource ComboBox.Static.Background}"
- BorderBrush="{StaticResource ComboBox.Static.Border}"
- BorderThickness="{TemplateBinding BorderThickness}"
- SnapsToDevicePixels="true">
- <Border
- x:Name="splitBorder"
- Width="{DynamicResource {x:Static SystemParameters.VerticalScrollBarWidthKey}}"
- Margin="0"
- HorizontalAlignment="Right"
- BorderBrush="Transparent"
- BorderThickness="1"
- SnapsToDevicePixels="true">
- <Path
- x:Name="arrow"
- Margin="0"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Data="F1 M 0,0 L 2.667,2.66665 L 5.3334,0 L 5.3334,-1.78168 L 2.6667,0.88501 L0,-1.78168 L0,0 Z"
- Fill="{StaticResource ComboBox.Static.Glyph}" />
- </Border>
- </Border>
- <ControlTemplate.Triggers>
- <MultiDataTrigger>
- <MultiDataTrigger.Conditions>
- <Condition Binding="{Binding IsEditable, RelativeSource={RelativeSource AncestorType={x:Type ComboBox}}}" Value="true" />
- <Condition Binding="{Binding IsMouseOver, RelativeSource={RelativeSource Self}}" Value="false" />
- <Condition Binding="{Binding IsPressed, RelativeSource={RelativeSource Self}}" Value="false" />
- <Condition Binding="{Binding IsEnabled, RelativeSource={RelativeSource Self}}" Value="true" />
- </MultiDataTrigger.Conditions>
- <Setter TargetName="templateRoot" Property="Background" Value="{StaticResource ComboBox.Static.Editable.Background}" />
- <Setter TargetName="templateRoot" Property="BorderBrush" Value="{StaticResource ComboBox.Static.Editable.Border}" />
- <Setter TargetName="splitBorder" Property="Background" Value="{StaticResource ComboBox.Static.Editable.Button.Background}" />
- <Setter TargetName="splitBorder" Property="BorderBrush" Value="{StaticResource ComboBox.Static.Editable.Button.Border}" />
- </MultiDataTrigger>
- <Trigger Property="IsMouseOver" Value="true">
- <Setter TargetName="arrow" Property="Fill" Value="{StaticResource ComboBox.MouseOver.Glyph}" />
- </Trigger>
- <MultiDataTrigger>
- <MultiDataTrigger.Conditions>
- <Condition Binding="{Binding IsMouseOver, RelativeSource={RelativeSource Self}}" Value="true" />
- <Condition Binding="{Binding IsEditable, RelativeSource={RelativeSource AncestorType={x:Type ComboBox}}}" Value="false" />
- </MultiDataTrigger.Conditions>
- <Setter TargetName="templateRoot" Property="Background" Value="{StaticResource ComboBox.MouseOver.Background}" />
- <Setter TargetName="templateRoot" Property="BorderBrush" Value="{StaticResource ComboBox.MouseOver.Border}" />
- </MultiDataTrigger>
- <MultiDataTrigger>
- <MultiDataTrigger.Conditions>
- <Condition Binding="{Binding IsMouseOver, RelativeSource={RelativeSource Self}}" Value="true" />
- <Condition Binding="{Binding IsEditable, RelativeSource={RelativeSource AncestorType={x:Type ComboBox}}}" Value="true" />
- </MultiDataTrigger.Conditions>
- <Setter TargetName="templateRoot" Property="Background" Value="{StaticResource ComboBox.MouseOver.Editable.Background}" />
- <Setter TargetName="templateRoot" Property="BorderBrush" Value="{StaticResource ComboBox.MouseOver.Editable.Border}" />
- <Setter TargetName="splitBorder" Property="Background" Value="{StaticResource ComboBox.MouseOver.Editable.Button.Background}" />
- <Setter TargetName="splitBorder" Property="BorderBrush" Value="{StaticResource ComboBox.MouseOver.Editable.Button.Border}" />
- </MultiDataTrigger>
- <Trigger Property="IsPressed" Value="true">
- <Setter TargetName="arrow" Property="Fill" Value="{StaticResource ComboBox.Pressed.Glyph}" />
- </Trigger>
- <MultiDataTrigger>
- <MultiDataTrigger.Conditions>
- <Condition Binding="{Binding IsPressed, RelativeSource={RelativeSource Self}}" Value="true" />
- <Condition Binding="{Binding IsEditable, RelativeSource={RelativeSource AncestorType={x:Type ComboBox}}}" Value="false" />
- </MultiDataTrigger.Conditions>
- <Setter TargetName="templateRoot" Property="Background" Value="{StaticResource ComboBox.Pressed.Background}" />
- <Setter TargetName="templateRoot" Property="BorderBrush" Value="{StaticResource ComboBox.Pressed.Border}" />
- </MultiDataTrigger>
- <MultiDataTrigger>
- <MultiDataTrigger.Conditions>
- <Condition Binding="{Binding IsPressed, RelativeSource={RelativeSource Self}}" Value="true" />
- <Condition Binding="{Binding IsEditable, RelativeSource={RelativeSource AncestorType={x:Type ComboBox}}}" Value="true" />
- </MultiDataTrigger.Conditions>
- <Setter TargetName="templateRoot" Property="Background" Value="{StaticResource ComboBox.Pressed.Editable.Background}" />
- <Setter TargetName="templateRoot" Property="BorderBrush" Value="{StaticResource ComboBox.Pressed.Editable.Border}" />
- <Setter TargetName="splitBorder" Property="Background" Value="{StaticResource ComboBox.Pressed.Editable.Button.Background}" />
- <Setter TargetName="splitBorder" Property="BorderBrush" Value="{StaticResource ComboBox.Pressed.Editable.Button.Border}" />
- </MultiDataTrigger>
- <Trigger Property="IsEnabled" Value="false">
- <Setter TargetName="arrow" Property="Fill" Value="{StaticResource ComboBox.Disabled.Glyph}" />
- </Trigger>
- <MultiDataTrigger>
- <MultiDataTrigger.Conditions>
- <Condition Binding="{Binding IsEnabled, RelativeSource={RelativeSource Self}}" Value="false" />
- <Condition Binding="{Binding IsEditable, RelativeSource={RelativeSource AncestorType={x:Type ComboBox}}}" Value="false" />
- </MultiDataTrigger.Conditions>
- <Setter TargetName="templateRoot" Property="Background" Value="{StaticResource ComboBox.Disabled.Background}" />
- <Setter TargetName="templateRoot" Property="BorderBrush" Value="{StaticResource ComboBox.Disabled.Border}" />
- </MultiDataTrigger>
- <MultiDataTrigger>
- <MultiDataTrigger.Conditions>
- <Condition Binding="{Binding IsEnabled, RelativeSource={RelativeSource Self}}" Value="false" />
- <Condition Binding="{Binding IsEditable, RelativeSource={RelativeSource AncestorType={x:Type ComboBox}}}" Value="true" />
- </MultiDataTrigger.Conditions>
- <Setter TargetName="templateRoot" Property="Background" Value="{StaticResource ComboBox.Disabled.Editable.Background}" />
- <Setter TargetName="templateRoot" Property="BorderBrush" Value="{StaticResource ComboBox.Disabled.Editable.Border}" />
- <Setter TargetName="splitBorder" Property="Background" Value="{StaticResource ComboBox.Disabled.Editable.Button.Background}" />
- <Setter TargetName="splitBorder" Property="BorderBrush" Value="{StaticResource ComboBox.Disabled.Editable.Button.Border}" />
- </MultiDataTrigger>
- </ControlTemplate.Triggers>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
- <ControlTemplate x:Key="ComboBoxEditableTemplate" TargetType="{x:Type ComboBox}">
- <Grid x:Name="templateRoot" SnapsToDevicePixels="true">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="0" MinWidth="{DynamicResource {x:Static SystemParameters.VerticalScrollBarWidthKey}}" />
- </Grid.ColumnDefinitions>
- <Popup
- x:Name="PART_Popup"
- Grid.ColumnSpan="2"
- AllowsTransparency="true"
- IsOpen="{Binding IsDropDownOpen, RelativeSource={RelativeSource TemplatedParent}}"
- Placement="Bottom"
- PopupAnimation="{DynamicResource {x:Static SystemParameters.ComboBoxPopupAnimationKey}}">
- <theme:SystemDropShadowChrome
- x:Name="shadow"
- MinWidth="{Binding ActualWidth, ElementName=templateRoot}"
- MaxHeight="{TemplateBinding MaxDropDownHeight}"
- Color="Transparent">
- <Border
- x:Name="dropDownBorder"
- Background="Transparent"
- BorderBrush="{DynamicResource {x:Static SystemColors.WindowFrameBrushKey}}"
- BorderThickness="1">
- <ScrollViewer x:Name="DropDownScrollViewer">
- <Grid x:Name="grid" RenderOptions.ClearTypeHint="Enabled">
- <Canvas
- x:Name="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>
- </theme:SystemDropShadowChrome>
- </Popup>
- <ToggleButton
- x:Name="toggleButton"
- Grid.ColumnSpan="2"
- Background="{TemplateBinding Background}"
- BorderBrush="{TemplateBinding BorderBrush}"
- BorderThickness="{TemplateBinding BorderThickness}"
- IsChecked="{Binding IsDropDownOpen, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}"
- Style="{StaticResource ComboBoxToggleButton}" />
- <Border
- x:Name="border"
- Margin="{TemplateBinding BorderThickness}"
- Background="{StaticResource TextBox.Static.Background}">
- <TextBox
- x:Name="PART_EditableTextBox"
- Margin="{TemplateBinding Padding}"
- HorizontalContentAlignment="{TemplateBinding HorizontalContentAlignment}"
- VerticalContentAlignment="{TemplateBinding VerticalContentAlignment}"
- IsReadOnly="{Binding IsReadOnly, RelativeSource={RelativeSource TemplatedParent}}"
- Style="{StaticResource ComboBoxEditableTextBox}" />
- </Border>
- </Grid>
- <ControlTemplate.Triggers>
- <Trigger Property="IsEnabled" Value="false">
- <Setter TargetName="border" Property="Opacity" Value="0.56" />
- </Trigger>
- <Trigger Property="IsKeyboardFocusWithin" Value="true">
- <Setter Property="Foreground" Value="Black" />
- </Trigger>
- <Trigger SourceName="PART_Popup" Property="HasDropShadow" Value="true">
- <Setter TargetName="shadow" Property="Margin" Value="0,0,5,5" />
- <Setter TargetName="shadow" Property="Color" Value="#71000000" />
- </Trigger>
- <Trigger Property="HasItems" Value="false">
- <Setter TargetName="dropDownBorder" Property="Height" Value="95" />
- </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="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>
- <ControlTemplate x:Key="ComboBoxTemplate" TargetType="{x:Type ComboBox}">
- <Grid x:Name="templateRoot" SnapsToDevicePixels="true">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="0" MinWidth="{DynamicResource {x:Static SystemParameters.VerticalScrollBarWidthKey}}" />
- </Grid.ColumnDefinitions>
- <Popup
- x:Name="PART_Popup"
- Grid.ColumnSpan="2"
- Margin="1"
- AllowsTransparency="true"
- IsOpen="{Binding IsDropDownOpen, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}"
- Placement="Bottom"
- PopupAnimation="{DynamicResource {x:Static SystemParameters.ComboBoxPopupAnimationKey}}">
- <theme:SystemDropShadowChrome
- x:Name="shadow"
- MinWidth="{Binding ActualWidth, ElementName=templateRoot}"
- MaxHeight="{TemplateBinding MaxDropDownHeight}"
- Color="Transparent">
- <Border
- x:Name="dropDownBorder"
- Background="{DynamicResource {x:Static SystemColors.WindowBrushKey}}"
- BorderBrush="{DynamicResource {x:Static SystemColors.WindowFrameBrushKey}}"
- BorderThickness="1">
- <ScrollViewer x:Name="DropDownScrollViewer">
- <Grid x:Name="grid" RenderOptions.ClearTypeHint="Enabled">
- <Canvas
- x:Name="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>
- </theme:SystemDropShadowChrome>
- </Popup>
- <ToggleButton
- x:Name="toggleButton"
- Grid.ColumnSpan="2"
- Background="{TemplateBinding Background}"
- BorderBrush="{TemplateBinding BorderBrush}"
- BorderThickness="{TemplateBinding BorderThickness}"
- IsChecked="{Binding IsDropDownOpen, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}"
- Style="{StaticResource ComboBoxToggleButton}" />
- <ContentPresenter
- x:Name="contentPresenter"
- Margin="{TemplateBinding Padding}"
- HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
- VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
- Content="{TemplateBinding SelectionBoxItem}"
- ContentStringFormat="{TemplateBinding SelectionBoxItemStringFormat}"
- ContentTemplate="{TemplateBinding SelectionBoxItemTemplate}"
- ContentTemplateSelector="{TemplateBinding ItemTemplateSelector}"
- IsHitTestVisible="false"
- SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
- </Grid>
- <ControlTemplate.Triggers>
- <Trigger SourceName="PART_Popup" Property="HasDropShadow" Value="true">
- <Setter TargetName="shadow" Property="Margin" Value="0,0,5,5" />
- <Setter TargetName="shadow" Property="Color" Value="#71000000" />
- </Trigger>
- <Trigger Property="HasItems" Value="false">
- <Setter TargetName="dropDownBorder" Property="Height" Value="95" />
- </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="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>
- <Style x:Key="ComboBoxStyle1" TargetType="{x:Type ComboBox}">
- <Setter Property="FocusVisualStyle" Value="{StaticResource FocusVisual}" />
- <Setter Property="Background" Value="{StaticResource ComboBox.Static.Background}" />
- <Setter Property="BorderBrush" Value="{StaticResource ComboBox.Static.Border}" />
- <Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.WindowTextBrushKey}}" />
- <Setter Property="BorderThickness" Value="1" />
- <Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Auto" />
- <Setter Property="ScrollViewer.VerticalScrollBarVisibility" Value="Auto" />
- <Setter Property="Padding" Value="6,3,5,3" />
- <Setter Property="ScrollViewer.CanContentScroll" Value="true" />
- <Setter Property="ScrollViewer.PanningMode" Value="Both" />
- <Setter Property="Stylus.IsFlicksEnabled" Value="False" />
- <Setter Property="Template" Value="{StaticResource ComboBoxTemplate}" />
- <Style.Triggers>
- <Trigger Property="IsEditable" Value="true">
- <Setter Property="IsTabStop" Value="false" />
- <Setter Property="Padding" Value="2" />
- <Setter Property="Template" Value="{StaticResource ComboBoxEditableTemplate}" />
- </Trigger>
- </Style.Triggers>
- </Style>
- </UserControl.Resources>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="0.12*" />
- <RowDefinition />
- </Grid.RowDefinitions>
- <StackPanel HorizontalAlignment="Right" Orientation="Horizontal">
- <ComboBox
- Width="130"
- Height="40"
- Margin="0,0,10,0"
- VerticalContentAlignment="Center"
- FontSize="20"
- Foreground="#FF2AB2E7"
- ItemsSource="{Binding DeviceName}"
- SelectedValue="滚筒输送线"
- SelectionChanged="ComboBox_SelectionChanged"
- Style="{StaticResource ComboBoxStyle1}" />
- <Button
- Width="120"
- Height="40"
- Margin="0,0,10,0"
- HorizontalAlignment="Right"
- Background="Transparent"
- BorderBrush="LightSkyBlue"
- BorderThickness="1"
- Command="{Binding SaveDataCommand}"
- Content="保存配置"
- FontSize="20"
- Foreground="#FF2AB2E7" />
- </StackPanel>
- <!-- 变量配置 -->
- <DataGrid
- Name="GT"
- Grid.Row="1"
- AutoGenerateColumns="False"
- Background="Transparent"
- CanUserDeleteRows="True"
- CellStyle="{StaticResource cellStyle}"
- ColumnHeaderStyle="{StaticResource ColumHeaderStyle}"
- EnableRowVirtualization="False"
- GridLinesVisibility="All"
- IsReadOnly="False"
- ItemsSource="{Binding Variables}"
- LoadingRow="DataGrid_LoadingRow"
- RowStyle="{StaticResource rowStyle}"
- Style="{StaticResource dataGrid}">
- <DataGrid.Columns>
- <DataGridTemplateColumn
- Width="0.1*"
- Header="ID"
- IsReadOnly="True">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBox
- IsReadOnly="True"
- Style="{StaticResource textboxStyle}"
- Text="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type DataGridRow}}, Path=Header}" />
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>
- <DataGridTextColumn
- Width="0.45*"
- Binding="{Binding PlcAddress}"
- ElementStyle="{StaticResource dgCellstyle}"
- Header="PLC地址"
- IsReadOnly="False" />
- <DataGridTextColumn
- Width="0.45*"
- Binding="{Binding Length}"
- ElementStyle="{StaticResource dgCellstyle}"
- Header="地址长度"
- IsReadOnly="False" />
- <!--<DataGridTemplateColumn IsReadOnly="False" Width="0.45*" Header="地址">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBox Text="{Binding PlcAddress}" Style="{StaticResource textboxStyle}"></TextBox>
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>-->
- <!--<DataGridTemplateColumn IsReadOnly="False" Width="0.45*" Header="地址长度">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBox Text="{Binding Length}" Style="{StaticResource textboxStyle}"></TextBox>
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>-->
- </DataGrid.Columns>
- </DataGrid>
- <!-- 炒锅1配置 -->
- <DataGrid
- x:Name="fryOne"
- Grid.Row="1"
- AutoGenerateColumns="False"
- Background="Transparent"
- CellStyle="{StaticResource cellStyle}"
- ColumnHeaderStyle="{StaticResource ColumHeaderStyle}"
- EnableRowVirtualization="False"
- GridLinesVisibility="All"
- IsReadOnly="False"
- ItemsSource="{Binding FryOneVariables}"
- LoadingRow="fryOne_LoadingRow"
- RowStyle="{StaticResource rowStyle}"
- Style="{StaticResource dataGrid}"
- Visibility="Collapsed">
- <DataGrid.Columns>
- <DataGridTemplateColumn
- Width="0.1*"
- Header="ID"
- IsReadOnly="True">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBox
- IsReadOnly="True"
- Style="{StaticResource textboxStyle}"
- Text="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type DataGridRow}}, Path=Header}" />
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>
- <DataGridTextColumn
- Width="0.45*"
- Binding="{Binding PlcAddress}"
- ElementStyle="{StaticResource dgCellstyle}"
- Header="PLC地址"
- IsReadOnly="False" />
- <DataGridTextColumn
- Width="0.45*"
- Binding="{Binding Length}"
- ElementStyle="{StaticResource dgCellstyle}"
- Header="地址长度"
- IsReadOnly="False" />
- <!--<DataGridTemplateColumn IsReadOnly="False" Width="0.45*" Header="地址">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBox Text="{Binding PlcAddress}" Style="{StaticResource textboxStyle}"></TextBox>
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>-->
- <!--<DataGridTemplateColumn IsReadOnly="False" Width="0.45*" Header="地址长度">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBox Text="{Binding Length}" Style="{StaticResource textboxStyle}"></TextBox>
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>-->
- </DataGrid.Columns>
- </DataGrid>
- <!-- 炒锅2配置 -->
- <DataGrid
- x:Name="fryTwo"
- Grid.Row="1"
- AutoGenerateColumns="False"
- Background="Transparent"
- CellStyle="{StaticResource cellStyle}"
- ColumnHeaderStyle="{StaticResource ColumHeaderStyle}"
- EnableRowVirtualization="False"
- GridLinesVisibility="All"
- IsReadOnly="False"
- ItemsSource="{Binding FryTwoVariables}"
- LoadingRow="fryTwo_LoadingRow"
- RowStyle="{StaticResource rowStyle}"
- Style="{StaticResource dataGrid}"
- Visibility="Collapsed">
- <DataGrid.Columns>
- <DataGridTemplateColumn
- Width="0.1*"
- Header="ID"
- IsReadOnly="True">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBox
- IsReadOnly="True"
- Style="{StaticResource textboxStyle}"
- Text="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type DataGridRow}}, Path=Header}" />
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>
- <DataGridTextColumn
- Width="0.45*"
- Binding="{Binding PlcAddress}"
- ElementStyle="{StaticResource dgCellstyle}"
- Header="PLC地址"
- IsReadOnly="False" />
- <DataGridTextColumn
- Width="0.45*"
- Binding="{Binding Length}"
- ElementStyle="{StaticResource dgCellstyle}"
- Header="地址长度"
- IsReadOnly="False" />
- <!--<DataGridTemplateColumn IsReadOnly="False" Width="0.45*" Header="地址">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBox Text="{Binding PlcAddress}" Style="{StaticResource textboxStyle}"></TextBox>
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>-->
- <!--<DataGridTemplateColumn IsReadOnly="False" Width="0.45*" Header="地址长度">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBox Text="{Binding Length}" Style="{StaticResource textboxStyle}"></TextBox>
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>-->
- </DataGrid.Columns>
- </DataGrid>
- <!-- 炒锅3配置 -->
- <DataGrid
- x:Name="fryThree"
- Grid.Row="1"
- AutoGenerateColumns="False"
- Background="Transparent"
- CellStyle="{StaticResource cellStyle}"
- ColumnHeaderStyle="{StaticResource ColumHeaderStyle}"
- EnableRowVirtualization="False"
- GridLinesVisibility="All"
- IsReadOnly="False"
- ItemsSource="{Binding FryThreeVariables}"
- LoadingRow="fryThree_LoadingRow"
- RowStyle="{StaticResource rowStyle}"
- Style="{StaticResource dataGrid}"
- Visibility="Collapsed">
- <DataGrid.Columns>
- <DataGridTemplateColumn
- Width="0.1*"
- Header="ID"
- IsReadOnly="True">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBox
- IsReadOnly="True"
- Style="{StaticResource textboxStyle}"
- Text="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type DataGridRow}}, Path=Header}" />
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>
- <DataGridTextColumn
- Width="0.45*"
- Binding="{Binding PlcAddress}"
- ElementStyle="{StaticResource dgCellstyle}"
- Header="PLC地址"
- IsReadOnly="False" />
- <DataGridTextColumn
- Width="0.45*"
- Binding="{Binding Length}"
- ElementStyle="{StaticResource dgCellstyle}"
- Header="地址长度"
- IsReadOnly="False" />
- <!--<DataGridTemplateColumn IsReadOnly="False" Width="0.45*" Header="地址">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBox Text="{Binding PlcAddress}" Style="{StaticResource textboxStyle}"></TextBox>
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>-->
- <!--<DataGridTemplateColumn IsReadOnly="False" Width="0.45*" Header="地址长度">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBox Text="{Binding Length}" Style="{StaticResource textboxStyle}"></TextBox>
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>-->
- </DataGrid.Columns>
- </DataGrid>
- <!-- 炒锅4配置 -->
- <DataGrid
- x:Name="fryFour"
- Grid.Row="1"
- AutoGenerateColumns="False"
- Background="Transparent"
- CellStyle="{StaticResource cellStyle}"
- ColumnHeaderStyle="{StaticResource ColumHeaderStyle}"
- EnableRowVirtualization="False"
- GridLinesVisibility="All"
- IsReadOnly="False"
- ItemsSource="{Binding FryFourVariables}"
- LoadingRow="fryFour_LoadingRow"
- RowStyle="{StaticResource rowStyle}"
- Style="{StaticResource dataGrid}"
- Visibility="Collapsed">
- <DataGrid.Columns>
- <DataGridTemplateColumn
- Width="0.1*"
- Header="ID"
- IsReadOnly="True">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBox
- IsReadOnly="True"
- Style="{StaticResource textboxStyle}"
- Text="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type DataGridRow}}, Path=Header}" />
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>
- <DataGridTextColumn
- Width="0.45*"
- Binding="{Binding PlcAddress}"
- ElementStyle="{StaticResource dgCellstyle}"
- Header="PLC地址"
- IsReadOnly="False" />
- <DataGridTextColumn
- Width="0.45*"
- Binding="{Binding Length}"
- ElementStyle="{StaticResource dgCellstyle}"
- Header="地址长度"
- IsReadOnly="False" />
- <!--<DataGridTemplateColumn IsReadOnly="False" Width="0.45*" Header="地址">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBox Text="{Binding PlcAddress}" Style="{StaticResource textboxStyle}"></TextBox>
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>-->
- <!--<DataGridTemplateColumn IsReadOnly="False" Width="0.45*" Header="地址长度">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBox Text="{Binding Length}" Style="{StaticResource textboxStyle}"></TextBox>
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>-->
- </DataGrid.Columns>
- </DataGrid>
- <!-- 炒锅5配置 -->
- <DataGrid
- x:Name="fryFive"
- Grid.Row="1"
- AutoGenerateColumns="False"
- Background="Transparent"
- CellStyle="{StaticResource cellStyle}"
- ColumnHeaderStyle="{StaticResource ColumHeaderStyle}"
- EnableRowVirtualization="False"
- GridLinesVisibility="All"
- IsReadOnly="False"
- ItemsSource="{Binding FryFiveVariables}"
- LoadingRow="fryFive_LoadingRow"
- RowStyle="{StaticResource rowStyle}"
- Style="{StaticResource dataGrid}"
- Visibility="Collapsed">
- <DataGrid.Columns>
- <DataGridTemplateColumn
- Width="0.1*"
- Header="ID"
- IsReadOnly="True">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBox
- IsReadOnly="True"
- Style="{StaticResource textboxStyle}"
- Text="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type DataGridRow}}, Path=Header}" />
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>
- <DataGridTextColumn
- Width="0.45*"
- Binding="{Binding PlcAddress}"
- ElementStyle="{StaticResource dgCellstyle}"
- Header="PLC地址"
- IsReadOnly="False" />
- <DataGridTextColumn
- Width="0.45*"
- Binding="{Binding Length}"
- ElementStyle="{StaticResource dgCellstyle}"
- Header="地址长度"
- IsReadOnly="False" />
- <!--<DataGridTemplateColumn IsReadOnly="False" Width="0.45*" Header="地址">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBox Text="{Binding PlcAddress}" Style="{StaticResource textboxStyle}"></TextBox>
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>-->
- <!--<DataGridTemplateColumn IsReadOnly="False" Width="0.45*" Header="地址长度">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <TextBox Text="{Binding Length}" Style="{StaticResource textboxStyle}"></TextBox>
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>-->
- </DataGrid.Columns>
- </DataGrid>
- </Grid>
- </UserControl>
|