Skip to content

Instantly share code, notes, and snippets.

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