Intersoft Support Center

Hide Pane Initially

WebPaneManager provides property to show/hide pane.

This topic will show you how to hide pane initially.

To hide pane initially

  1. Create 3 panes using WebPaneManager Advanced Designer to produce Top, Middle and Bottom panes.
  2. Select the Top pane and set Visible to False.
  3. When you run the project, the Top pane will be hidden initially.
  4. You can use a button to show the Top pane. Place the following code in Button click server-side event.
    C# Copy Code
    protected void Button1_Click(object sender, EventArgs e)
    {
       WebPaneManager1.RootGroupPane.Panes[0].Visible = true;
    }
    
Previous Next