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

The main window module:

  • manages the overall window

Provides

  • IMainWindow interface

NuGet package

Dependencies

  • None

Usage

The IMainWindow interface exposes a number of useful properties to control aspects of the main application window.

public interface IMainWindow
{
    WindowState WindowState { get; set; }
    double Width { get; set; }
    double Height { get; set; }

    string Title { get; set; }
    ImageSource Icon { get; set; } 

    IShell Shell { get; }
}
Clone this wiki locally