首页 > 开发 > 综合 > 正文

在C#隐藏主窗口的几种方法

2024-07-21 02:26:08
字体:
来源:转载
供稿:网友
国内最大的酷站演示中心!

写过一个程序,要求在程序启动的时候主窗口隐藏,只在系统托盘里显示一个图标。一直以来采用的方法都是设置窗口的showintaskbar=false, windowstate=minimized。但是偶然发现尽管这样的方法可以使主窗口隐藏不见,但是在用alt+tab的时候却可以看见这个程序的图标并把这个窗口显示出来。因此这种方法其实并不能满足要求。

经过研究,又找到两个方法。

方法一: 重写setvisiblecore方法

protected override void setvisiblecore(bool value)
{
     base.setvisiblecore(false);
}

这个方法比较简单,但是使用了这个方法后主窗口就再也不能被显示出来,而且在退出程序的时候也必须调用application.exit方法而不是close方法。这样的话就要考虑一下,要把主窗口的很多功能放到其他的地方去。

方法二: 不创建主窗口,直接创建notifyicon和contextmenu组件
这种方法比较麻烦,很多代码都必须手工写

static void main()
 {
            application.enablevisualstyles();
            application.setcompatibletextrenderingdefault(false);

            system.resources.resourcemanager resources =
                new system.resources.resourcemanager("myresource",  system.reflection.assembly.getexecutingassembly());
            notifyicon ni = new notifyicon();

            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(object sender, mouseeventargs e)
            {
                ni.showballoontip(0);
            };

            application.run();
}
 如果需要的组件太多,这个方法就很繁琐,因此只是做为一种可行性研究。

方法三:前面两种方法都有一个问题,主窗口不能再显示出来。现在这种方法就没有这个问题了

private bool windowcreate=true;
...
protected override void onactivated(eventargs e)
        {
            if (windowcreate)
            {
                base.visible = false;
                windowcreate = false;
            }

            base.onactivated(e);
        }

private void notifyicon1_doubleclick(object sender, eventargs e)
        {
            if (this.visible == true)
            {
                this.hide();
                this.showintaskbar = false;
            }
            else
            {
                this.visible = true;
                this.showintaskbar = true;
                this.windowstate = formwindowstate.normal;
                //this.show();
                this.bringtofront();
            }

        }

 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表