| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 | using System.ComponentModel;using System.Windows.Input;using Aitex.Core.Common.DeviceData;using MECF.Framework.Common.OperationCenter;using MECF.Framework.UI.Client.CenterViews.Editors;using OpenSEMI.ClientBase;namespace MECF.Framework.UI.Client.Ctrlib.UnitControls{    public class MfcSettingDialogViewModel : DialogViewModel<string>, INotifyPropertyChanged    {        public MfcSettingDialogViewModel(string dialogName = "")        {            this.DisplayName = dialogName;        }        private AITMfcData _data;        public AITMfcData DeviceData        {            get            {                return _data;            }            set            {                _data = value;                                NotifyOfPropertyChange(nameof(DeviceData));            }        }        private string _setPoint;        public string InputSetPoint        {            get { return _setPoint; }            set            {                _setPoint = value;                NotifyOfPropertyChange(nameof(InputSetPoint));            }        }        private bool _enableOk;        public bool IsEnableOk        {            get            {                return _enableOk;            }            set            {                _enableOk = value;                NotifyOfPropertyChange(nameof(IsEnableOk));            }        }         public void Cancel()        {            IsCancel = true;            TryClose(false);        }        protected override void OnViewLoaded(object view)        {            base.OnViewLoaded(view);            MfcSettingDialogView v = (MfcSettingDialogView)view;        }        public void OK()        {            InvokeClient.Instance.Service.DoOperation($"{DeviceData.UniqueName}.{AITMfcOperation.Ramp}", InputSetPoint, 0);            //this.DialogResult = string.Empty;            //IsCancel = false;            //TryClose(true);        }    }}
 |