Opentk/Source/OpenTK/Platform/Windows/WindowInfo.cs
the_fiddler a2f5fa396f Overrode ToString in WindowInfo implementations.
Debugging NRE in X11Keyboard constructor.
2007-08-05 16:44:31 +00:00

40 lines
1,001 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenTK.Platform.Windows
{
/// <summary>
/// Describes a Windows window.
/// This class supports OpenTK, and is not intended for use by OpenTK programs.
/// </summary>
internal class WindowInfo : IWindowInfo
{
private IntPtr handle;
private WindowInfo parent;
#region --- IWindowInfo Members ---
public IntPtr Handle
{
get { return handle; }
internal set { handle = value; }
}
public IWindowInfo Parent
{
get { return parent; }
internal set { parent = value as WindowInfo; }
}
#endregion
public override string ToString()
{
return String.Format("Windows.WindowInfo: Handle {0}{1} Parent {2}",
this.Handle, System.Environment.NewLine, this.Parent.ToString());
}
}
}