| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 | 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 Caliburn.Micro;using MECF.Framework.Common.OperationCenter;namespace MECF.Framework.UI.Client.Ctrlib.UnitControls{    /// <summary>    /// AITThrottleValve.xaml 的交互逻辑    /// </summary>    public partial class TVControl : UserControl    {        public TVControl()        {            InitializeComponent();        }        // define dependency properties        public static readonly DependencyProperty CommandProperty = DependencyProperty.Register(                        "Command", typeof(ICommand), typeof(TVControl),                        new FrameworkPropertyMetadata(null, FrameworkPropertyMetadataOptions.AffectsRender));        public static readonly DependencyProperty DeviceDataProperty = DependencyProperty.Register(                        "DeviceData", typeof(AITThrottleValveData), typeof(TVControl),                        new FrameworkPropertyMetadata(new AITThrottleValveData(), 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);            }        }         private TVSettingDialogViewModel _dialog;        protected override void OnRender(DrawingContext drawingContext)        {            base.OnRender(drawingContext);            if (DeviceData != null)            {                if (DeviceData.Mode == (int)PressureCtrlMode.TVPressureCtrl)                {                    //rotateTransform.Angle = DeviceData.PressureFeedback * 90.0 / DeviceData.MaxValuePressure;                    rectPosition.Stroke = Brushes.Gray;                    rectPressure.Stroke = Brushes.LightCyan;                }                else if (DeviceData.Mode == (int)PressureCtrlMode.TVPositionCtrl)                {                                        rectPosition.Stroke = Brushes.LightCyan;                    rectPressure.Stroke = Brushes.Gray;                }                else                {                    rectPosition.Stroke = Brushes.Gray;                    rectPressure.Stroke = Brushes.Gray;                }                rotateTransform.Angle = DeviceData.PositionFeedback * 180.0 / DeviceData.MaxValuePosition;                PositionValue.Content = DeviceData.PositionFeedback.ToString("F1") + " %";                //PositionUnit.Content = "%";                PressureValue.Content = DeviceData.PressureSetPoint.ToString("F1") + " Torr";                //PressureUnit.Content = !string.IsNullOrEmpty(DeviceData.UnitPressure) ? DeviceData.UnitPressure : "mTorr";                if (_dialog != null)                {                    _dialog.DeviceData = DeviceData;                }                //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 (DeviceData == null)                return;            _dialog = new TVSettingDialogViewModel($"{DeviceData.DisplayName} Setting");            _dialog.DeviceData = DeviceData;            _dialog.InputSetPointPosition = DeviceData.PositionSetPoint.ToString("F1");            _dialog.InputSetPointPressure = DeviceData.PressureSetPoint.ToString("F1");            WindowManager wm = new WindowManager();            Window owner = Application.Current.MainWindow;            if (owner != null)            {                Mouse.Capture(owner);                Point pointToWindow = Mouse.GetPosition(owner);                Point pointToScreen = owner.PointToScreen(pointToWindow);                pointToScreen.X = pointToScreen.X + 50;                pointToScreen.Y = pointToScreen.Y - 150;                Mouse.Capture(null);                wm.ShowDialog(_dialog, pointToScreen);            }            else            {                wm.ShowDialog(_dialog);            }            //_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}", (float)value);        }        private void SetPositionExecute(double value)        {            InvokeClient.Instance.Service.DoOperation($"{DeviceData.Module}.{DeviceData.DeviceName}.{AITThrottleValveOperation.SetPosition}", (float)value);        }    }}
 |