123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- 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.DeviceControl;
- using MECF.Framework.Common.DataCenter;
- using MECF.Framework.Common.OperationCenter;
- namespace Aitex.Core.UI.DeviceControl
- {
- /// <summary>
- /// AITChillerControl.xaml 的交互逻辑
- /// </summary>
- public partial class AITChillerControl : UserControl
- {
- public AITChillerControl()
- {
- InitializeComponent();
- }
- // define dependency properties
- public static readonly DependencyProperty CommandProperty = DependencyProperty.Register(
- "Command", typeof(ICommand), typeof(AITChillerControl),
- new FrameworkPropertyMetadata(null, FrameworkPropertyMetadataOptions.AffectsRender));
- public static readonly DependencyProperty DeviceDataProperty = DependencyProperty.Register(
- "DeviceData", typeof(AITChillerData), typeof(AITChillerControl),
- new FrameworkPropertyMetadata(new AITChillerData(), FrameworkPropertyMetadataOptions.AffectsRender));
- public static readonly DependencyProperty BackColorProperty = DependencyProperty.Register(
- "BackColor", typeof(Brush), typeof(AITChillerControl),
- new FrameworkPropertyMetadata(Brushes.DarkMagenta, FrameworkPropertyMetadataOptions.AffectsRender));
- public static readonly DependencyProperty IsAutoModeProperty = DependencyProperty.Register(
- "IsAutoMode", typeof(bool), typeof(AITChillerControl),
- new FrameworkPropertyMetadata(false, FrameworkPropertyMetadataOptions.AffectsRender));
- /// <summary>
- /// 输入值是否百分比,默认否
- /// </summary>
- public bool IsPercent { get; set; }
- public ICommand Command
- {
- get
- {
- return (ICommand)this.GetValue(CommandProperty);
- }
- set
- {
- this.SetValue(CommandProperty, value);
- }
- }
- /// <summary>
- /// set, get current progress value AnalogDeviceData
- /// </summary>
- public AITChillerData DeviceData
- {
- get
- {
- return (AITChillerData)this.GetValue(DeviceDataProperty);
- }
- set
- {
- this.SetValue(DeviceDataProperty, value);
- }
- }
- public Brush BackColor
- {
- get
- {
- return (Brush)this.GetValue(BackColorProperty);
- }
- set
- {
- this.SetValue(BackColorProperty, value);
- }
- }
- public bool IsAutoMode
- {
- get
- {
- return (bool)this.GetValue(IsAutoModeProperty);
- }
- set
- {
- this.SetValue(IsAutoModeProperty, value);
- }
- }
- protected override void OnRender(DrawingContext drawingContext)
- {
- base.OnRender(drawingContext);
- //draw background color
- if (DeviceData != null)
- {
- rectBkground.Fill = DeviceData.IsPowerOn ? Brushes.DarkMagenta : Brushes.Gray;
- //draw red board if mfc meets a warning
- rectBkground.Stroke = DeviceData.IsWarning ? Brushes.Red : new SolidColorBrush(System.Windows.Media.Color.FromRgb(0X37, 0X37, 0X37));
- labelValue.Foreground = DeviceData.IsWarning ? Brushes.Pink : Brushes.LightYellow;
- rectBkground.StrokeThickness = DeviceData.IsWarning ? 2 : 1;
- if (dialogBox != null)
- {
- dialogBox.RealValue = DeviceData.FeedBack.ToString("F1");
- dialogBox.IsHeaterOn = DeviceData.IsPowerOn;
- dialogBox.SetPoint = DeviceData.SetPoint;
- }
- }
- }
- private void ExecutePowerOnOff(bool value)
- {
- if (Command == null)
- {
- InvokeClient.Instance.Service.DoOperation($"{DeviceData.Module}.{DeviceData.DeviceName}.SetPowerOnOff", value.ToString());
- }
- else
- {
- Command.Execute(new object[] { DeviceData.DeviceName, AITHeaterOperation.SetPowerOnOff.ToString(), value.ToString() });
- }
- }
- private void ExecuteSetHeaterValue(double power)
- {
- if (Command == null)
- {
- InvokeClient.Instance.Service.DoOperation($"{DeviceData.Module}.{DeviceData.DeviceName}.Ramp",
- power.ToString(), ((double)QueryDataClient.Instance.Service.GetConfig($"{DeviceData.Module}.{DeviceData.DeviceName}.ChillerTemperatureOffset")).ToString());
- }
- else
- {
- Command.Execute(new object[]
- {DeviceData.DeviceName, AITHeaterOperation.Ramp.ToString(), power.ToString()});
- }
- }
- private AITHeaterInputDialogBox dialogBox;
- public Window AnalogOwner { get; set; }
- private void Grid_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
- {
- if (IsAutoMode) return;
- if (DeviceData == null)
- return;
- dialogBox = new AITHeaterInputDialogBox
- {
- SetHeaterValueCommandDelegate = ExecuteSetHeaterValue,
- SetHeaterPowerOnOffCommandDelegate = ExecutePowerOnOff,
- DeviceName = DeviceData.DisplayName,
- DeviceId = DeviceData.DeviceSchematicId,
- DefaultValue = DeviceData.DefaultValue,
- RealValue = DeviceData.FeedBack.ToString("F1"),
- SetPoint = Math.Round(DeviceData.SetPoint, 1),
- MaxValue = DeviceData.ScaleMax,
- MinValue = DeviceData.ScaleMin,
- Unit = DeviceData.Unit,
- IsHeaterOn = DeviceData.IsPowerOn,
- HeaterOffName = "Device Off",
- HeaterOnName = "Device On",
- };
- if (AnalogOwner != null)
- dialogBox.Owner = AnalogOwner;
- dialogBox.Topmost = true;
- dialogBox.WindowStartupLocation = WindowStartupLocation.CenterScreen;
- dialogBox.FocasAll();
- dialogBox.ShowDialog();
- dialogBox = null;
- }
- private void Grid_MouseEnter(object sender, MouseEventArgs e)
- {
- if (DeviceData != null)
- {
- string tooltipValue =
- string.Format("{0}:{1}\r\n\r\nID:{2}\r\nScaleMax:{3} {5}\r\nScaleMin:{4} {5}\r\nSetPoint:{6} {5} \r\nFeedback:{7} {5}\r\nHeaterPower:{8}",
- DeviceData.Type,
- DeviceData.DisplayName,
- DeviceData.DeviceSchematicId,
- DeviceData.ScaleMax,
- DeviceData.ScaleMin,
- DeviceData.Unit,
- DeviceData.SetPoint.ToString("F1"),
- DeviceData.FeedBack.ToString("F1"),
- DeviceData.IsPowerOn ? "On" : "Off");
- ToolTip = tooltipValue;
- }
- }
- }
- }
|