Added NotImplementedException to Visible property.

This commit is contained in:
the_fiddler 2007-09-26 15:43:28 +00:00
parent d4376a75e0
commit dca3f30460

View file

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