From 0d10528b430721512e0e93e0d455fcec44207ec9 Mon Sep 17 00:00:00 2001 From: xcd <834800634@qq.com> Date: 星期二, 14 七月 2020 18:27:10 +0800 Subject: [PATCH] 1. 板卡驱动实现运动暂停/继续功能,板卡动作衔接实现暂停/继续 2. 修复部分调试bug 3. 安全光幕/安全门功能调整 --- src/Bro.Process/ProcessConfig.cs | 17 ++++++++++++++++- 1 files changed, 16 insertions(+), 1 deletions(-) diff --git a/src/Bro.Process/ProcessConfig.cs b/src/Bro.Process/ProcessConfig.cs index 1dc98f4..e718679 100644 --- a/src/Bro.Process/ProcessConfig.cs +++ b/src/Bro.Process/ProcessConfig.cs @@ -7,6 +7,7 @@ using System.ComponentModel; using System.Drawing.Design; using System.Linq; +using System.Runtime.CompilerServices; namespace Bro.Process { @@ -68,7 +69,7 @@ [TypeConverter(typeof(CollectionCountConvert))] [Editor(typeof(ComplexCollectionEditor<MonitorSetBase>), typeof(UITypeEditor))] public List<IMonitorSet> MonitorSetCollection { get; set; } = new List<IMonitorSet>(); - + public virtual List<IInitialConfig> GetAllDeviceInitialConfigs() { List<IInitialConfig> configs = new List<IInitialConfig>(); @@ -107,5 +108,19 @@ return list; } + + + #region IPropertyChanged + public event PropertyChangedEventHandler PropertyChanged; + + public virtual void Set<T>(ref T field, T newValue, [CallerMemberName] string propName = null) + { + if (!field.Equals(newValue)) + { + field = newValue; + PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propName)); + } + } + #endregion } } -- Gitblit v1.8.0