ComponentFactory.Krypton.Toolkit.KryptonSplitContainerDesigner.CanParent C# (CSharp) Method

CanParent() public method

Indicates whether the specified control can be a child of the control managed by a designer.
public CanParent ( Control control ) : bool
control System.Windows.Forms.Control The Control to test.
return bool
        public override bool CanParent(Control control)
        {
            // We never allow anything to be added to the split container
            return false;
        }