ClearCanvas.Desktop.View.WinForms.DesktopWindowView.CreateShelfView C# (CSharp) Method

CreateShelfView() public method

Creates a new view for the specified Shelf.
Override this method if you want to return a custom implementation of IShelfView. In practice, it is preferable to subclass ShelfView rather than implement IShelfView directly.
public CreateShelfView ( Shelf shelf ) : IShelfView
shelf Shelf
return IShelfView
        public virtual IShelfView CreateShelfView(Shelf shelf)
        {
            return new ShelfView(shelf, this);
        }