Sic.Framework/MECF.Framework.UI.Core/DeviceControl/AITGasValve.xaml.cs

239 lines
9.4 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Threading;
using Aitex.Core.Common.DeviceData;
using Aitex.Core.UI.Control;
using Aitex.Core.Util;
using MECF.Framework.Common.OperationCenter;
namespace Aitex.Core.UI.DeviceControl
{
/// <summary>
/// TexGasValve.xaml 的交互逻辑
/// </summary>
public partial class AITGasValve : UserControl
{
// define dependency properties
public static readonly DependencyProperty CommandProperty = DependencyProperty.Register(
"Command", typeof(ICommand), typeof(AITGasValve),
new FrameworkPropertyMetadata(null, FrameworkPropertyMetadataOptions.AffectsRender));
public ICommand Command
{
get
{
return (ICommand)this.GetValue(CommandProperty);
}
set
{
this.SetValue(CommandProperty, value);
}
}
public Visibility MenuVisibility
{
get { return (Visibility)this.GetValue(MenuVisibilityProperty); }
set { this.SetValue(MenuVisibilityProperty, value); }
}
// Using a DependencyProperty as the backing store for MenuVisibility. This enables animation, styling, binding, etc...
public static readonly DependencyProperty MenuVisibilityProperty =
DependencyProperty.Register("MenuVisibility", typeof(Visibility), typeof(AITGasValve),
new FrameworkPropertyMetadata(Visibility.Visible));
public static readonly DependencyProperty DeviceDataProperty = DependencyProperty.Register(
"DeviceData", typeof(AITValveData), typeof(AITGasValve),
new FrameworkPropertyMetadata(new AITValveData(), FrameworkPropertyMetadataOptions.AffectsRender));
public AITValveData DeviceData
{
get
{
var data = (AITValveData)this.GetValue(DeviceDataProperty);
rdTrig.CLK = (data == null || data.IsOpen);
if (rdTrig.R)
{
Application.Current.Dispatcher.BeginInvoke(new Action(() =>
{
Storyboard sb = this.FindResource("OpenValveStoryBoard") as Storyboard;
sb.Begin();
if (imgValveClose.ContextMenu.Items != null && imgValveClose.ContextMenu.Items.Count == 2)
{
((MenuItem)imgValveClose.ContextMenu.Items[0]).IsEnabled = !IsOpen;
((MenuItem)imgValveClose.ContextMenu.Items[1]).IsEnabled = IsOpen;
}
}));
}
if (rdTrig.T)
{
Application.Current.Dispatcher.BeginInvoke(new Action(() =>
{
Storyboard sb = this.FindResource("CloseValveStoryBoard") as Storyboard;
sb.Begin();
if (imgValveClose.ContextMenu.Items != null && imgValveClose.ContextMenu.Items.Count == 2)
{
((MenuItem)imgValveClose.ContextMenu.Items[0]).IsEnabled = !IsOpen;
((MenuItem)imgValveClose.ContextMenu.Items[1]).IsEnabled = IsOpen;
}
}));
}
return data;
}
set
{
this.SetValue(DeviceDataProperty, value);
}
}
public static readonly DependencyProperty EnableServiceControlProperty = DependencyProperty.Register(
"EnableServiceControl", typeof(bool), typeof(AITGasValve),
new FrameworkPropertyMetadata(false, FrameworkPropertyMetadataOptions.AffectsRender));
public bool EnableServiceControl
{
get
{
return (bool)this.GetValue(EnableServiceControlProperty);
}
set
{
this.SetValue(EnableServiceControlProperty, value);
}
}
public static readonly DependencyProperty DeviceData2Property = DependencyProperty.Register(
"DeviceData2", typeof(AITValveData), typeof(AITGasValve),
new FrameworkPropertyMetadata(new AITValveData(), FrameworkPropertyMetadataOptions.AffectsRender));
public AITValveData DeviceData2
{
get
{
return (AITValveData)this.GetValue(DeviceData2Property);
}
set
{
this.SetValue(DeviceData2Property, value);
}
}
public static readonly DependencyProperty ValveOpenOrientationProperty = DependencyProperty.Register(
"ValveOpenOrientation", typeof(LineOrientation), typeof(AITGasValve),
new FrameworkPropertyMetadata(LineOrientation.Horizontal, FrameworkPropertyMetadataOptions.AffectsRender));
public LineOrientation ValveOpenOrientation
{
get { return (LineOrientation)GetValue(ValveOpenOrientationProperty); }
set { SetValue(ValveOpenOrientationProperty, value); }
}
public bool IsOpen => DeviceData == null || DeviceData.IsOpen;
private DispatcherTimer valveTimer = new DispatcherTimer();
RD_TRIG rdTrig = new RD_TRIG();
public AITGasValve()
{
InitializeComponent();
}
private BitmapSource GetImage(string name)
{
return new BitmapImage(new Uri($"pack://application:,,,/MECF.Framework.UI.Core;component/Resources/Valve/{name}"));
}
protected override void OnRender(DrawingContext drawingContext)
{
if (DeviceData != null)
{
this.ToolTip =
$"Valve Name{DeviceData.DisplayName} \r\n Device ID{DeviceData.DeviceSchematicId} \r\n Status";
ToolTip += DeviceData.Feedback ? "Open" : "Closed";
}
base.OnRender(drawingContext);
}
private void OpenValve(object sender, RoutedEventArgs e)
{
if (EnableServiceControl)
{
InvokeClient.Instance.Service.DoOperation($"{DeviceData.UniqueName}.{AITValveOperation.GVTurnValve}", true);
return;
}
if (Command == null)
return;
Command.Execute(new object[] { DeviceData.DeviceName, AITValveOperation.GVTurnValve, true });
if (DeviceData2 != null && !string.IsNullOrEmpty(DeviceData2.DeviceName))
{
Command.Execute(new object[] { DeviceData2.DeviceName, AITValveOperation.GVTurnValve, false });
}
}
private void CloseValve(object sender, RoutedEventArgs e)
{
if (EnableServiceControl)
{
InvokeClient.Instance.Service.DoOperation($"{DeviceData.UniqueName}.{AITValveOperation.GVTurnValve}", false);
return;
}
if (Command == null)
return;
Command.Execute(new object[] { DeviceData.DeviceName, AITValveOperation.GVTurnValve, false });
if (DeviceData2 != null && !string.IsNullOrEmpty(DeviceData2.DeviceName))
{
Command.Execute(new object[] { DeviceData2.DeviceName, AITValveOperation.GVTurnValve, true });
}
}
private void AITGasValve_OnLoaded(object sender, RoutedEventArgs e)
{
imgValveOpen.Source = GetImage(ValveOpenOrientation == LineOrientation.Horizontal ? "valveopenvertical.png" : "valveopenhorizontal.png");
imgValveClose.Source = GetImage(ValveOpenOrientation == LineOrientation.Vertical ? "valveclosevertical.png" : "valveclosehorizontal.png");
if (DeviceData == null || DeviceData.IsOpen)
{
Application.Current.Dispatcher.BeginInvoke(new Action(() =>
{
Storyboard sb = this.FindResource("OpenValveStoryBoard") as Storyboard;
sb.Begin();
if (imgValveClose.ContextMenu.Items != null && imgValveClose.ContextMenu.Items.Count == 2)
{
((MenuItem)imgValveClose.ContextMenu.Items[0]).IsEnabled = !IsOpen;
((MenuItem)imgValveClose.ContextMenu.Items[1]).IsEnabled = IsOpen;
}
}));
}
else
{
Application.Current.Dispatcher.BeginInvoke(new Action(() =>
{
Storyboard sb = this.FindResource("CloseValveStoryBoard") as Storyboard;
sb.Begin();
if (imgValveClose.ContextMenu.Items != null && imgValveClose.ContextMenu.Items.Count == 2)
{
((MenuItem)imgValveClose.ContextMenu.Items[0]).IsEnabled = !IsOpen;
((MenuItem)imgValveClose.ContextMenu.Items[1]).IsEnabled = IsOpen;
}
}));
}
//valveTimer.Start();
}
}
}