Panels

Panels can be used to show any sort of information; when opened, some Smartpoint functionality is disabled (e.g., area switcher controls). Smartpoint has left, right, top, and bottom panels.

Show a panel

  1. Specify the content you want to display in the panel using the following code:

    UIHelper.Instance.CurrentSmartTerminalWindow.LeftPanel.Content = myControl

  2. Use the UIHelper ShowPanel function call to specify the Smartpoint user control that contains the panel you want to open and to specify into which panel you want to inject content.

    Code

Hide a panel

To hide a panel, use the UIHelper HidePanel function call to specify which panel you want to hide.

Code