同题!
谢谢

解决方案 »

  1.   

    比较简单的方法,装各aston桌面主题,这个就有隐藏又下角图标的功能
    给几个图片你看看吧。
      

  2.   

    图片还不能贴呢
    给个软件下载地址吧:http://www.pconline.com.cn/pcedu/tuijian/desktop/assist/0307/195406.html
      

  3.   

    要用API才能实现。
    调用user32.dll
    FindClass=FindWindow("Shell_TrayWnd","")
    Handle=FindWindowEx(FindClass,0,TrayNotifyWnd","")
    ShowWindow(Handle,1)
    以上是用来显示托盘隐藏也很简单
    FindClass=FindWindow("Sheel_TrayWnd","")
    Handle=FindWindowEx(FindClass,0,TrayNotifyWnd","")
    ShowWindow(Hadle,0)
    以上就隐藏托盘
    上面用到的这三个函数你去查一查API怎么声明,在程序中声明一下就行了。
      

  4.   

    看到楼上 nocolor(悟空) 的回帖,偶联想起那句“only you ………………”
      

  5.   

    能说一下调用user32.dll里面的那个函数吗?
    我在msdn里没找到
      

  6.   

    我找到了这三个,但下面的调用还是不清楚
    [DllImport("User32.dll",EntryPoint="FindWindow")] 
    private static extern int FindWindow(string lpClassName,string lpWindowName); [DllImport("user32.dll")]
    public static extern IntPtr FindWindowEx(IntPtr hwndParent,IntPtr hwndChildAfter,string lpszClass,string lpszWindow);[DllImport("user32.dll", EntryPoint="ShowWindow", CharSet=CharSet.Auto)]
    public static extern int ShowWindow(IntPtr hwnd,int nCmdShow);