Skip to content

Instantly share code, notes, and snippets.

@CostaFot
Created April 5, 2026 18:57
Show Gist options
  • Select an option

  • Save CostaFot/098a151eb11ff9e7a7607fd35fb9c38c to your computer and use it in GitHub Desktop.

Select an option

Save CostaFot/098a151eb11ff9e7a7607fd35fb9c38c to your computer and use it in GitHub Desktop.
// Talk to Windows UI layer
[DllImport("user32.dll")]
// Read the window style
GetWindowLong(windowHandle, EXTENDED_STYLE)
// Add the "hide from taskbar" flag and apply it
SetWindowLong(windowHandle, EXTENDED_STYLE, currentStyle | 0x80)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment