Skip to content

Instantly share code, notes, and snippets.

@emoacht
Last active June 3, 2022 14:17
Show Gist options
  • Save emoacht/518e9d91c28aa24d672c0c74ed1ab0fd to your computer and use it in GitHub Desktop.
Save emoacht/518e9d91c28aa24d672c0c74ed1ab0fd to your computer and use it in GitHub Desktop.
Set owner window after .NET 5.0.
// using WinRT;
public void SetOwnerWindow(StoreContext context, Window window)
{
var handle = new WindowInteropHelper(window).Handle;
var initWindow = context.As<IInitializeWithWindow>();
initWindow.Initialize(handle);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment