要求在程序启动的时候主窗口隐藏,只在系统托盘里显示一个图标。一直以来采用的方法都是设置窗口的ShowInTaskBar=false, WindowState=Minimized。但是偶然发现尽管这样的方法可以使主窗口隐藏不见,但是在用Alt+Tab的时候却可以看见这个程序的图标并把这个窗口显示出来。因此这种方法其实并不能满足要求。 c#隐藏窗口方法一: 重写setVisibleCore方法protectedoverridevoidSetVisibleCore(bool){base .SetVisibleCore(false);}这个方法比较简单,但是使用了这个方法后主窗口就再也不能被显示出来,而且在退出程序的时候也必须调用Application.Exit方法而不是Close方法。这样的话就要考虑一下,要把主窗口的很多功能放到其他的地方去。 c#隐藏窗口方法二: 不创建主窗口,直接创建NotifyIcon和ContextMenu组件 这种方法比较麻烦,很多代码都必须手工写staticvoidMain(){Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); System.Resources.ResourceManagerresources=newSystem.Resources.ResourceManager(myResource ,System.Reflection.Assembly.GetExecutingAssembly()); NotifyIconni=newNotifyIcon(); ni.BalloonTipIcon=System.Windows.Forms.ToolTipIcon.Warning; ni.BalloonTipText=test!;ni.BalloonTipTitle=test.; //ni.ContextMenuStrip=contextMenu; ni.Icon=((System.Drawing.Icon)(resources.GetObject(ni.Icon)));ni.Text=Test;ni.Visible=true;ni.MouseClick+=delegate(objectsender,MouseEventArgse){ni.ShowBalloonTip(0);}; Application.Run();}如果需要的组件太多,这个方法就很繁琐,因此只是做为一种可行性研究。 c#隐藏窗口方法三:前面两种方法都有一个问题,主窗口不能再显示出来。现在这种方法就没有这个问题了privateboolwindowCreate=true; protectedoverridevoidOnActivated(EventArgse){if(windowCreate){base .Visible=false;windowCreate=false;}base .OnActivated(e);}privatevoidnotifyIcon1_DoubleClick(objectsender,EventArgse){if(this .Visible==true){this .Hide();this .ShowInTaskbar=false;}else{this .Visible=true;this .ShowInTaskbar=true;this .WindowState=FormWindowState.Normal;