Skip to content
Robert B Colton edited this page Aug 12, 2016 · 1 revision

Screenshot

Adds a status bar to the bottom of the window.

Provides

  • IStatusBar
  • StatusBarItemViewModel class

NuGet package

Dependencies

  • None

Usage

var statusBar = IoC.Get<IStatusBar>();
statusBar.AddItem("Hello world!", new GridLength(1, GridUnitType.Star));
statusBar.AddItem("Ln 44", new GridLength(100));
statusBar.AddItem("Col 79", new GridLength(100));
Clone this wiki locally