Created
October 12, 2011 08:22
-
-
Save akfish/1280623 to your computer and use it in GitHub Desktop.
C# Hide borderless WinForm in Alt+Tab
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected override CreateParams CreateParams | |
{ | |
get | |
{ | |
CreateParams cp = base.CreateParams; | |
//WS_EX_TOOLWINDOW = 0x80 | |
cp.ExStyle |= 0x80; | |
return cp; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment