/// <summary> /// Raises the closed event. /// </summary> public void OnClosed(Window widget, EventArgs e) { widget.Platform.Invoke(() => widget.OnClosed(e)); }
/// <summary> /// Raises the closed event. /// </summary> public void OnClosed(Window widget, EventArgs e) { using (widget.Platform.Context) widget.OnClosed(e); }