ComponentFactory.Krypton.Toolkit.KryptonTreeViewActionList.KryptonTreeViewActionList C# (CSharp) Method

KryptonTreeViewActionList() public method

Initialize a new instance of the KryptonTreeViewActionList class.
public KryptonTreeViewActionList ( KryptonTreeViewDesigner owner ) : System
owner KryptonTreeViewDesigner Designer that owns this action list instance.
return System
        public KryptonTreeViewActionList(KryptonTreeViewDesigner owner)
            : base(owner.Component)
        {
            // Remember the tree view instance
            _treeView = owner.Component as KryptonTreeView;

            // Cache service used to notify when a property has changed
            _service = (IComponentChangeService)GetService(typeof(IComponentChangeService));
        }