Skip to content

Instantly share code, notes, and snippets.

@hecomi
Last active August 31, 2018 07:19
Show Gist options
  • Save hecomi/2e184afe784321f920d11fd06afc1cfb to your computer and use it in GitHub Desktop.
Save hecomi/2e184afe784321f920d11fd06afc1cfb to your computer and use it in GitHub Desktop.
...
[DllImport("user32")]
public static extern System.IntPtr GetActiveWindow();
...
var handle = GetActiveWindow();
var window = UwcManager.Find(handle);
if (window != null)
{
// hogehoge
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment