Skip to main content
Version: 3.5

StatusBar

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Displays information to the user in a about the object being viewed, the object's components, or the object's operation.

public class StatusBar : Control

Constructors

Instance memberStatusBar()

Initializes a new instance of the StatusBar class.

Properties

Instance memberDock

DockStyle: Returns or sets the docking behavior of the StatusBar control. (Default: Bottom)

Instance memberPanelCount

Int32: Returns the number of child panels without forcing the creation of the collection.

Instance memberPanels

StatusBarPanelCollection: Returns the collection of StatusBar panels contained within the control.

Instance memberShowPanels

Boolean: Returns or sets whether any panels that have been added to the control are displayed. (Default: True)

The StatusBar control displays the value of its Text property without any panels by default. When ShowPanels is set to true, the StatusBarPanel children specified in the StatusBar control are displayed; otherwise they are hidden and the Text is displayed instead.

Instance memberSizingGrip

Boolean: Returns or sets whether a sizing grip is displayed in the lower-right corner of the control. (Default: True)

Instance memberText

String: Returns or sets the text displayed in the StatusBar control when if doesn't contain any StatusBarPanel or when ShowPanels is false. (Default: "")

The text assigned to the StatusBar is displayed only if it doesn't contain any StatusBarPanel or if the property ShowPanels is false.

Instance memberTextAlign

HorizontalAlignment: Returns or sets how text is aligned in a StatusBar control. (Default: Left)

Events

Instance memberPanelClick

StatusBarPanelClickEventHandler Fired when a StatusBarPanel object on a StatusBar control is clicked.

Implements

NameDescription
IBindableComponentBindable components implement this interface.
IDropTargetControls that support drag & drop operations implement this interface.
IWisejComponentAll wisej components implement this interface.
IWisejControlAll wisej controls derived from the Control class must implement this interface.
IWisejSerializableAllows an object to serialize itself.