首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

最小化窗口恢复窗口时闪屏很厉害 怎么处理

2011-12-27 
最小化窗口恢复窗口时闪屏很厉害 怎么办?public void notifyIcon1_DoubleClick(object sender, EventArgs

最小化窗口恢复窗口时闪屏很厉害 怎么办?
public void notifyIcon1_DoubleClick(object sender, EventArgs e)
  {
  if (this.WindowState == FormWindowState.Minimized)
  this.WindowState = FormWindowState.Normal;


  this.Activate();
  this.ShowInTaskbar = true;
  this.notifyIcon1.Visible = false;

[解决办法]
帮定
是不是有背景图片
[解决办法]
把窗体Hide,然后是上面的代码,最后再Show
不知道可以不,试一下

热点排行