-
-
Notifications
You must be signed in to change notification settings - Fork 298
MainWindow module
Robert B Colton edited this page Aug 12, 2016
·
1 revision
The main window module:
- manages the overall window
-
IMainWindow
interface
- None
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; }
}