diff --git a/Source/OpenTK/GameWindow.cs b/Source/OpenTK/GameWindow.cs index c8472911..504d9bd5 100644 --- a/Source/OpenTK/GameWindow.cs +++ b/Source/OpenTK/GameWindow.cs @@ -945,6 +945,25 @@ namespace OpenTK #endregion + #region public WindowBorder WindowBorder + + /// + /// Gets or states the border of the GameWindow. + /// + public WindowBorder WindowBorder + { + get + { + return glWindow.WindowBorder; + } + set + { + glWindow.WindowBorder = value; + } + } + + #endregion + #endregion #region --- GameWindow Timing ---