RT,当然任务栏上的图标是已经隐藏好的

解决方案 »

  1.   


        public const int GW_OWNER = 4;
        public const int SW_HIDE = 0;    [System.Runtime.InteropServices.DllImportAttribute("user32.dll", EntryPoint="GetWindow")]
    public static extern  System.IntPtr GetWindow(System.IntPtr hWnd, uint uCmd) ;    [System.Runtime.InteropServices.DllImportAttribute("user32.dll", EntryPoint="ShowWindow")]
    public static extern  bool ShowWindow(System.IntPtr hWnd, int nCmdShow) ;IntPtr h=GetWindow(this.Handler,GW_OWNER);
    ShowWindow(h,SW_HIDE);
      

  2.   

    总之showwindow是show不出来的,不然也不来问了
      

  3.   

    http://topic.csdn.net/u/20100310/23/1554e955-5ffc-4771-9034-09889c5b00e2.html
    你在上面也问了你是指窗体隐藏了只有个小图标在右下角的通知区域,想显示出来?
    还是指窗体隐藏了,在任务栏也没有图标,在右下角也没有图标,这时想打窗体显示出来?
    你都没说清楚你现在的条件是什么?
      

  4.   

    以这个为准,上个问题是因为我以为是hide了,没想到是最小化再隐藏任务栏图标
      

  5.   

    以这个为准,上个问题是因为我以为是hide了,没想到是最小化再隐藏任务栏图标