LCUS1_dependOn.cs 798 Bytes
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9
using Misc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace FLY.Thick.Base.UI
{
潘栩锋's avatar
潘栩锋 committed
10 11 12
    /// <summary>
    /// LCUS1 绑定 全局参数字典ParamDictionary 的配置
    /// </summary>
潘栩锋's avatar
潘栩锋 committed
13 14 15 16
    public class LCUS1_dependOn:LCUS1
    {
        ParamDictionary paramDictionary;
        public LCUS1_dependOn(
17
            ParamDictionary paramDictionary) 
潘栩锋's avatar
潘栩锋 committed
18 19
        {
            this.paramDictionary = paramDictionary;
20 21
            //绑定 this.PortName 与 this.paramDictionary.LCUS1_PortName
            this.paramDictionary.SetBinding(this, nameof(PortName), ParamDistItemKeys.LCUS1_PortName, "COM1");
22
            this.paramDictionary.SetBinding(this, nameof(Enable), ParamDistItemKeys.LCUS1_Enable, false);
潘栩锋's avatar
潘栩锋 committed
23 24 25
        }
    }
}