請問Win32 GUI如何將程序隱藏,不在工具列顯示?

請問Win32 GUI如何將程序隱藏,不在工具列顯示?

請問怎樣能令程序不在工具列中顯示?
就像VC++中的ShowInTaskBar  False那樣

$main = Win32::GUI::Window->new(
                -name => 'Main',
                -width => 400,
                -height => 100,
                -sysmenu => 0,
);

sysmenu => 0 不能隱藏
到底是怎樣

翻閱了眾文檔,
終於給我發現了這一句
To remove the window's icon from the taskbar, it is necessary to diable the window as well
搞成 dialog 就可以了。以前搞过的。