Added NotImplementedException to Visible property.

This commit is contained in:
the_fiddler 2007-09-26 15:43:28 +00:00
parent d3da5a219a
commit 40b6f1040f

View file

@ -196,6 +196,10 @@ namespace OpenTK
#region public bool Fullscreen
/// <summary>
/// TODO: This property is not implemented.
/// Gets or sets a value indicating whether the GameWindow is in fullscrren mode.
/// </summary>
public bool Fullscreen
{
get { return glWindow.Fullscreen; }
@ -260,16 +264,19 @@ namespace OpenTK
#region public bool Visible
/// <summary>
/// TODO: This property is not implemented
/// Gets or sets a value indicating whether the GameWindow is visible.
/// </summary>
public bool Visible
{
get
{
throw new NotImplementedException();
return glWindow.Visible;
}
set
{
throw new NotImplementedException();
glWindow.Visible = value;
}
}