Class Window
Represent a Window on WindowSystem.
Implements
Inherited Members
Namespace: Evergine.Common.Graphics
Assembly: Evergine.Common.dll
Syntax
public abstract class Window : Surface, IDisposable
Constructors
Window(string, uint, uint)
Initializes a new instance of the Window class.
Declaration
public Window(string title, uint width, uint height)
Parameters
Type | Name | Description |
---|---|---|
string | title | Window title. |
uint | width | Window width. |
uint | height | Window height. |
Properties
Title
Gets or sets window title.
Declaration
public abstract string Title { get; set; }
Property Value
Type | Description |
---|---|
string |
Visible
Gets or sets a value indicating whether the window is visible.
Declaration
public abstract bool Visible { get; set; }
Property Value
Type | Description |
---|---|
bool |