--- title: "StatusBar Control Overview" ms.date: "03/30/2017" f1_keywords: - "StatusBar" helpviewer_keywords: - "StatusBar control [Windows Forms], about StatusBar control" - "status bars" ms.assetid: b7b9852c-633d-4416-bb2e-94852b989c6c --- # StatusBar Control Overview (Windows Forms) > [!IMPORTANT] > The and controls replace and add functionality to the and controls; however, the and controls are retained for both backward compatibility and future use, if you choose. The Windows Forms [StatusBar Control](statusbar-control-windows-forms.md) is used on forms as an area, usually displayed at the bottom of a window, in which an application can display various kinds of status information. controls can have status bar panels on them that display text or icons to indicate state, or a series of icons in an animation that indicate a process is working; for example, Microsoft Word indicating that the document is being saved. ## Using the StatusBar Control Internet Explorer uses a status bar to indicate the URL of a page when the mouse rolls over the hyperlink; Microsoft Word gives you information on page location, section location, and editing modes such as overtype and revision tracking; and Visual Studio uses the status bar to give context-sensitive information, such as telling you how to manipulate dockable windows as either docked or floating. You can display a single message on the status bar by setting the property to `false` (the default) and setting the property of the status bar to the text you want to appear in the status bar. You can divide the status bar into panels to display more than one type of information by setting the property to `true` and using the method of . ## See also - - - [How to: Determine Which Panel in the Windows Forms StatusBar Control Was Clicked](determine-which-panel-wf-statusbar-control-was-clicked.md)