OpenTK.Platform.Windows.WinWindowInfo.WinWindowInfo C# (CSharp) Method

WinWindowInfo() public method

Constructs a new instance with the specified window handle and paren.t
public WinWindowInfo ( IntPtr handle, WinWindowInfo parent ) : System
handle System.IntPtr The window handle for this instance.
parent WinWindowInfo The parent window of this instance (may be null).
return System
        public WinWindowInfo(IntPtr handle, WinWindowInfo parent)
        {
            this.handle = handle;
            this.parent = parent;
        }

Same methods

WinWindowInfo::WinWindowInfo ( ) : System