Don't show notification form in alt tab menu

This commit is contained in:
Jaex 2022-07-10 10:46:43 +03:00
parent c2b6b2b2a5
commit 0e68e9006a

View file

@ -52,6 +52,16 @@ public class NotificationForm : LayeredForm
private Bitmap buffer;
private Graphics gBuffer;
protected override CreateParams CreateParams
{
get
{
CreateParams createParams = base.CreateParams;
createParams.ExStyle |= (int)WindowStyles.WS_EX_TOOLWINDOW;
return createParams;
}
}
private NotificationForm()
{
InitializeComponent();