var
  wndTray: HWND;
begin
  wndTray := findwindow('Shell_TrayWnd', nil);
  ShowWindow(wndTray, sw_hide);  // 要显示时将 sw_hide 变为 sw_show
end;