此帖出自嵌入式系统论坛
最新回复
问题解决了
[DllImport("coredll.dll")]
public static extern int FindWindow(string lpClassName, string lpWindowName);
[DllImport("coredll.dll")]
internal extern static int EnableWindow(int hwnd, int fEnable);
[DllImport("coredll.dll")]
public static extern int ShowWindow(int hwnd, int nCmdShow);
///
/// 根据参数控制任务栏的显示与否
///
/// 0:隐藏;1:显示
public static void controlShow_Hide(int showTemp)
{
int hTaskBarWnd = FindWindow("HHTaskBar", null);
ShowWindow(hTaskBarWnd, showTemp);
}
使用的时候直接调用controlShow_Hide方法就可以了
详情
回复
发表于 2009-10-22 09:25
| ||
|
||
| |
|
|
此帖出自嵌入式系统论坛
| ||
|
||
| |
|
|
| |
|
|
| |
|
|
此帖出自嵌入式系统论坛
| ||
|
||
EEWorld Datasheet 技术支持