ComponentFactory.Krypton.Toolkit.KryptonReadOnlyControls.Add C# (CSharp) Method

Add() public method

Adds the specified control to the control collection.
public Add ( Control value ) : void
value System.Windows.Forms.Control The Control to add to the control collection.
return void
        public override void Add(Control value)
        {
            if (AllowRemoveInternal)
                base.Add(value);
            else
                throw new NotSupportedException("ReadOnly controls collection");
        }