WindowHandle Class
Namespace: Stride.GraphicsAssembly: Stride.Graphics.dll
A platform specific window handle.
                 System.Object →  
                WindowHandle
              
              
                 Derived from WindowHandle: 
              
              
              
public class WindowHandle
              | Name | Description | |
|---|---|---|
| Constructors | ||
| WindowHandle(AppContextType, Object, IntPtr) | Initializes a new instance of the WindowHandle class.  | 
                          |
| Fields | ||
| Context | The context.  | 
                          |
| Properties | ||
| Handle | The associated platform specific handle of NativeWindow.  | 
                          |
| NativeWindow | The native windows as an opaque System.Object.  | 
                          |
Constructors
WindowHandle(AppContextType, Object, IntPtr)
Initializes a new instance of the WindowHandle class.
public WindowHandle(AppContextType context, object nativeWindow, IntPtr handle)
              Parameters
| Type | Name | Description | 
|---|---|---|
| AppContextType | context | The context.  | 
                  
| System.Object | nativeWindow | The native window instance (Winforms, SDLWindow, ...).  | 
                  
| System.IntPtr | handle | The associated handle of   | 
                  
Fields
Context
The context.
public readonly AppContextType Context
              Field Value
| Type | Description | 
|---|---|
| AppContextType | 
Properties
Handle
The associated platform specific handle of NativeWindow.
public IntPtr Handle { get; }
              Property Value
| Type | Description | 
|---|---|
| System.IntPtr | 
NativeWindow
The native windows as an opaque System.Object.
public object NativeWindow { get; }
              Property Value
| Type | Description | 
|---|---|
| System.Object |