| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 | 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.Imaging;using System.Windows.Navigation;using System.Windows.Shapes;using Aitex.Core.Common.DeviceData;using Aitex.Core.UI.Control;using MECF.Framework.Common.OperationCenter;namespace Aitex.Core.UI.DeviceControl{    /// <summary>    /// AITThrottleValve.xaml 的交互逻辑    /// </summary>    public partial class AITThrottleValve : UserControl    {        public AITThrottleValve()        {            InitializeComponent();        }        // define dependency properties        public static readonly DependencyProperty CommandProperty = DependencyProperty.Register(                        "Command", typeof(ICommand), typeof(AITThrottleValve),                        new FrameworkPropertyMetadata(null, FrameworkPropertyMetadataOptions.AffectsRender));        public static readonly DependencyProperty DeviceDataProperty = DependencyProperty.Register(                        "DeviceData", typeof(AITThrottleValveData), typeof(AITThrottleValve),                        new FrameworkPropertyMetadata(new AITThrottleValveData(), FrameworkPropertyMetadataOptions.AffectsRender));        public static readonly DependencyProperty IsAutoModeProperty = DependencyProperty.Register(                       "IsAutoMode", typeof(bool), typeof(AITThrottleValve),                       new FrameworkPropertyMetadata(false, FrameworkPropertyMetadataOptions.AffectsRender));        public ICommand Command        {            get            {                return (ICommand)this.GetValue(CommandProperty);            }            set            {                this.SetValue(CommandProperty, value);            }        }        /// <summary>        /// set, get current progress value AnalogDeviceData        /// </summary>        public AITThrottleValveData DeviceData        {            get            {                return (AITThrottleValveData)this.GetValue(DeviceDataProperty);            }            set            {                this.SetValue(DeviceDataProperty, value);            }        }        public bool IsAutoMode        {            get            {                return (bool)this.GetValue(IsAutoModeProperty);            }            set            {                this.SetValue(IsAutoModeProperty, value);            }        }        private AITThrottleValveInputDialogBox _dialogBox;        public Window AnalogOwner { get; set; }        protected override void OnRender(DrawingContext drawingContext)        {            base.OnRender(drawingContext);            if (DeviceData != null)            {                if (DeviceData.Mode == (int)PressureCtrlMode.TVPressureCtrl)                {                    labelValue.Content = DeviceData.PositionFeedback.ToString("F0") + " %";                    rotateTransform.Angle = DeviceData.PositionFeedback;                }                else if (DeviceData.Mode == (int)PressureCtrlMode.TVPositionCtrl)                {                    labelValue.Content = DeviceData.PositionFeedback.ToString("F0") + " %";                    rotateTransform.Angle = DeviceData.PositionFeedback;                }                if (_dialogBox != null)                {                    _dialogBox.IsPositionMode = DeviceData.Mode == (int)PressureCtrlMode.TVPositionCtrl;                    _dialogBox.IsPressureMode = DeviceData.Mode == (int) PressureCtrlMode.TVPressureCtrl;                    //_dialogBox.SetPointPosition = DeviceData.PositionSetPoint;                    //_dialogBox.SetPointPressure = DeviceData.PressureSetPoint;                }            }        }        private void Grid_MouseEnter(object sender, MouseEventArgs e)        {            //if (DeviceData != null)            //{            //    string tooltipValue =            //        string.Format(Application.Current.Resources["GlobalLableThrottleValveToolTip"].ToString(),            //            DeviceData.Type,            //            DeviceData.DisplayName,            //            DeviceData.DeviceSchematicId,            //            DeviceData.Mode == (int)PressureCtrlMode.TVPressureCtrl ? "Pressure" : (DeviceData.Mode == (int)PressureCtrlMode.TVPositionCtrl ? "Position" : ""),            //            DeviceData.PositionFeedback.ToString("F1"),            //            DeviceData.PressureFeedback.ToString("F1"));            //    ToolTip = tooltipValue;            //}        }        private void Grid_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)        {            if (IsAutoMode)                return;            if (DeviceData == null)                return;            _dialogBox = new AITThrottleValveInputDialogBox            {                SetThrottleModeCommandDelegate = SetThrottleModeExecute,                SetPressureCommandDelegate = SetPressureExecute,                SetPositionCommandDelegate = SetPositionExecute,                DeviceName = string.Format("{0}: {1}", DeviceData.Type, DeviceData.DisplayName),                DeviceId = DeviceData.DeviceSchematicId,                SetPointPosition = Math.Round(DeviceData.PositionSetPoint, 1),                SetPointPressure = Math.Round(DeviceData.PressureSetPoint, 1),                MaxValuePressure = DeviceData.MaxValuePressure,                MaxValuePosition = DeviceData.MaxValuePosition,                UnitPosition = DeviceData.UnitPosition,                UnitPressure = DeviceData.UnitPressure,                FeedbackPosition = DeviceData.PositionFeedback,                FeedbackPressure = DeviceData.PressureFeedback,                 IsPositionMode = DeviceData.Mode == (int)PressureCtrlMode.TVPositionCtrl,                 IsPressureMode = DeviceData.Mode == (int) PressureCtrlMode.TVPressureCtrl,            };            if (AnalogOwner != null)                _dialogBox.Owner = AnalogOwner;            _dialogBox.Topmost = true;            _dialogBox.WindowStartupLocation = WindowStartupLocation.CenterScreen;            _dialogBox.FocasAll();            _dialogBox.ShowDialog();            _dialogBox = null;        }        private void SetThrottleModeExecute(PressureCtrlMode value)        {            InvokeClient.Instance.Service.DoOperation($"{DeviceData.Module}.{DeviceData.DeviceName}.{AITThrottleValveOperation.SetMode}", value.ToString() );        }        private void SetPressureExecute(double value)        {            InvokeClient.Instance.Service.DoOperation($"{DeviceData.Module}.{DeviceData.DeviceName}.{AITThrottleValveOperation.SetPressure}", value );        }        private void SetPositionExecute(double value)        {            InvokeClient.Instance.Service.DoOperation($"{DeviceData.Module}.{DeviceData.DeviceName}.{AITThrottleValveOperation.SetPosition}", value );        }    }}
 |