wpf-devexpress-dot-xpf-dot-bars-dot-bar-a1ccd60c.md
Gets or sets whether the bar represents the status bar. This is a dependency property.
Namespace : DevExpress.Xpf.Bars
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
public bool IsStatusBar { get; set; }
Public Property IsStatusBar As Boolean
| Type | Description |
|---|---|
| Boolean |
true if the bar represents the status bar; otherwise, false.
|
The status bar is a bar that has the following features:
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the IsStatusBar property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
wpf-bars-mvvm-generate-bars-from-view-model-collection/CS/DXSample/MainWindow.xaml#L62
<ContentControl>
<dxb:Bar Caption="{Binding Name}" ItemLinksSource="{Binding Items}" IsStatusBar="True">
<dxb:Bar.DockInfo>
See Also