| 发表于:2007-03-12 22:39:496楼 得分:0 |
private void notifyicon1_doubleclick(object sender, system.eventargs e) { bool c=!b; this.visible=b; this.windowstate=formwindowstate.normal; b=c; } private void form1_resize(object sender, system.eventargs e) { if(this.windowstate==formwindowstate.minimized) { bool d=!b; this.visible=b; b=d; } } | | |
|