From dca3f3046079d17d730474eca982aa5c3f5efc03 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Wed, 26 Sep 2007 15:43:28 +0000 Subject: [PATCH] Added NotImplementedException to Visible property. --- Source/OpenTK/GameWindow.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Source/OpenTK/GameWindow.cs b/Source/OpenTK/GameWindow.cs index b3d2fffa..80f30529 100644 --- a/Source/OpenTK/GameWindow.cs +++ b/Source/OpenTK/GameWindow.cs @@ -196,6 +196,10 @@ namespace OpenTK #region public bool Fullscreen + /// + /// TODO: This property is not implemented. + /// Gets or sets a value indicating whether the GameWindow is in fullscrren mode. + /// public bool Fullscreen { get { return glWindow.Fullscreen; } @@ -260,16 +264,19 @@ namespace OpenTK #region public bool Visible /// + /// TODO: This property is not implemented /// Gets or sets a value indicating whether the GameWindow is visible. /// public bool Visible { get { + throw new NotImplementedException(); return glWindow.Visible; } set { + throw new NotImplementedException(); glWindow.Visible = value; } }