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;
}
}