예제 #1
0
 public LogicalAxis(SystemService Service, ConfigLogicalAxis Config, string ParentComponentName, int ID)
 {
     this.Service    = Service;
     this.Config     = Config;
     this.AxisName   = Config.DisplayName;
     this.ParentName = ParentComponentName;
     this.ID         = ID;
 }
예제 #2
0
        public LogicalAxis(ConfigLogicalAxis Config, string ParentComponentName)
        {
            this.Config     = Config;
            this.AxisName   = Config.DisplayName;
            this.ParentName = ParentComponentName;
            this.MoveArgs   = new AxisMoveArgs()
            {
                AxisCaption = AxisName
            };

            this.MoveArgsTemp = new AxisMoveArgs();
        }