public void Set(IntPtr handle, int interval = 42) { Renderer = new NativeRenderer(this, handle, interval); }
/// <summary> /// Draws the specified native window to this <see cref="RenderTarget" />. /// </summary> /// <param name="windowHandle">The window handle of the window to draw.</param> public void Draw(IntPtr windowHandle) { NativeRenderer.Draw(this, windowHandle); }