Example #1
0
        public ActionTreeNode(ScriptAction Action)
            : base(Action.Label)
        {
            this.Action = Action;

            ImageIndex = Action.ImageIndex;
            SelectedImageIndex = ImageIndex;
        }
Example #2
0
 private void SetAction(ScriptAction Action)
 {
     _action = Action;
     _action.Node = this;
     ImageIndex = _action.ImageIndex;
     SelectedImageIndex = ImageIndex;
 }