在Windows操作系統中有自動隱藏和顯示任務欄的功能,其實也可以在程序中調用Windows API 控制任務欄的顯示和隱藏。
主要程序代碼。
private const int SW_HIDE = 0;//API參數表示隱藏窗口
private const int SW_SHOW = 5;//API參數表示用當前的大小和位置顯示窗口
public Form1()
{
InitializeComponent();
}
[DllImportAttribute("user32.dll")]
private static extern int FindWindow(string ClassName, string WindowName);
[DllImport("user32.dll")]
private static extern int ShowWindow(int handle,int cmdShow);
private void button1_Click(object sender, EventArgs e)
{
ShowWindow(FindWindow("Shell_TrayWnd", null), SW_SHOW);
}
private void button2_Click(object sender, EventArgs e)
{
ShowWindow(FindWindow("Shell_TrayWnd", null), SW_HIDE);
}