
The WPF.StatusBar class represents a tool bar which can be used to show the position of the curent text input position and other status information of a WPF.TextControl. It is inherited from the WPF.TextControlFrameworkElement class which is inherited from the System.Windows.FrameworkElement class. The following describes only the properties, methods and events defined through this class. For a list of inherited properties, methods and events see the .NET Framework reference.
Introduced: 16.0.
[C#]
public class StatusBar : TextControlFrameworkElement
[Visual Basic]
Public Class StatusBar
Inherits TextControlFrameworkElement
| Property | Description | |
| BorderStyle | Gets or sets the border style of the status bar. | |
| ColumnText | Gets or sets the text in the 'Column' area of the status bar. | |
| DisplayColors | Gets or sets the colors of the status bar. | |
| FontFamily | Gets or sets the font family of the status bar. | |
| FontSize | Gets or sets the font size of the status bar in device-independent units (1/96th inch). | |
| FontStyle | Gets or sets the font style of the status bar. | |
| FontWeight | Gets or sets the weight or thickness of the status bar's font. | |
| LineText | Gets or sets the text in the 'Line' area of the status bar. | |
| PageCounterText | Gets or sets the text in the 'Page counter' area of the status bar. | |
| PageText | Gets or sets the text in the 'Page' area of the status bar. | |
| SectionCounterText | Gets or sets the text in the 'Section counter' area of the status bar. | |
| SectionText | Gets or sets the text in the 'Section' area of the status bar. | |
| ShowColumn | Specifies whether the status bar shows the column number of the current text input position. | |
| ShowKeyStates | Specifies whether the status bar shows the key state of the CAPSLOCK and the NUMLOCK key and the current insertion mode, insert or overwrite. | |
| ShowLine | Specifies whether the status bar shows the line number of the current text input position. | |
| ShowPage | Specifies whether the status bar shows the page number of the current text input position. | |
| ShowPageCounter | Specifies whether the status bar shows the number of pages the document consists of. | |
| ShowSection | Specifies whether the status bar shows the section number of the current text input position. | |
| ShowSectionCounter | Specifies whether the status bar shows the number of sections the document consists of. | |
| ShowZoom | Specifies whether the status bar shows the current zoom factor. | |
| Text | Gets or sets the text of the status bar. |