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

Add() public method

Append a view to the collection.
public Add ( ViewBase item ) : void
item ViewBase ViewBase reference.
return void
        public override void Add(ViewBase item)
        {
            // Can never add a view to a leaf view
            throw new NotSupportedException("Cannot add to a leaf view.");
        }