去除切换里的窗口显示

This commit is contained in:
ww-rm
2025-04-20 17:24:38 +08:00
parent afc011adbb
commit 9c6af07d32

View File

@@ -1,4 +1,5 @@
using System; using SpineViewer.Natives;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel; using System.ComponentModel;
using System.ComponentModel.Design; using System.ComponentModel.Design;
@@ -20,5 +21,15 @@ namespace SpineViewer.Forms
{ {
InitializeComponent(); InitializeComponent();
} }
protected override CreateParams CreateParams
{
get
{
var cp = base.CreateParams;
cp.ExStyle |= Win32.WS_EX_TOOLWINDOW;
return cp;
}
}
} }
} }