ClearCanvas.Desktop.Shelf.Show C# (CSharp) Method

Show() public method

Makes the shelf visible.
public Show ( ) : void
return void
        public void Show()
        {
            AssertState(new DesktopObjectState[] { DesktopObjectState.Open, DesktopObjectState.Closing });
            
            this.ShelfView.Show();
        }

Usage Example

コード例 #1
0
 void ShowShelf2()
 {
     if (_shelf2 != null)
     {
         _shelf2.Show();
     }
 }
All Usage Examples Of ClearCanvas.Desktop.Shelf::Show