使用WinAPI隐藏C#中任务栏的窗口

时间:2010-07-15 23:06:21

标签: c# .net winapi window taskbar

相信我,我用谷歌搜索并期望它是一个相当容易的发现 - 事实证明它不是。 我有窗把手,但没有窗体。我该怎么做? 谢谢!

2 个答案:

答案 0 :(得分:5)

声明这些:

 [DllImport("user32.dll", SetLastError = true)]
static extern int GetWindowLong(IntPtr hWnd, int nIndex);
[DllImport("user32.dll")]
static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
private const int GWL_EX_STYLE = -20;
private const int WS_EX_APPWINDOW = 0x00040000, WS_EX_TOOLWINDOW = 0x00000080;

然后在显示表单之前使用它:


SetWindowLong(handle, GWL_EX_STYLE, (GetWindowLong(handle, GWL_EX_STYLE) | WS_EX_TOOLWINDOW) & ~WS_EX_APPWINDOW);

(将句柄更改为存储窗口句柄的任何内容)

答案 1 :(得分:2)

将Form的ShowInTaskbar属性设置为false。