C# 关于使用notifyIcon问题
我在窗体中加入notifyIcon想在窗体最小化的时候隐藏,双击任务图标的时候显示,问题出现在双击任务栏图标的时候窗体显示不正常,隐藏在桌面左侧类似于把QQ窗体拖到桌面左...
我在窗体中加入notifyIcon
想在窗体最小化的时候隐藏,双击任务图标的时候显示,问题出现在双击任务栏图标的时候窗体显示不正常,隐藏在桌面左侧类似于把QQ窗体拖到桌面左侧隐藏那样,那位高手能帮我解决这个问题,十分感谢。
private void notifyIcon1_DoubleClick(object sender, EventArgs e)
{
this.WindowState = FormWindowState.Normal;
this.Activate();
this.ShowInTaskbar = true;
}
private void MainForm_Resize(object sender, EventArgs e)
{
if (this.WindowState == FormWindowState.Minimized)
{
this.ShowInTaskbar = false;
}
} 展开
想在窗体最小化的时候隐藏,双击任务图标的时候显示,问题出现在双击任务栏图标的时候窗体显示不正常,隐藏在桌面左侧类似于把QQ窗体拖到桌面左侧隐藏那样,那位高手能帮我解决这个问题,十分感谢。
private void notifyIcon1_DoubleClick(object sender, EventArgs e)
{
this.WindowState = FormWindowState.Normal;
this.Activate();
this.ShowInTaskbar = true;
}
private void MainForm_Resize(object sender, EventArgs e)
{
if (this.WindowState == FormWindowState.Minimized)
{
this.ShowInTaskbar = false;
}
} 展开
2个回答
2013-12-19
展开全部
窗体最小化到状态栏
private void MainForm_Resize(object sender, EventArgs e)
{
if (this.WindowState == FormWindowState.Minimized)
{
notifyIcon1.Visible = true;
this.Hide();
this.ShowInTaskbar = false;
}
} private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e)
{
if (this.ShowInTaskbar == false)
{
notifyIcon1.Visible = true;
this.ShowInTaskbar = false;
this.Show();
this.Activate();
this.WindowState = FormWindowState.Normal;
}
}
private void MainForm_Resize(object sender, EventArgs e)
{
if (this.WindowState == FormWindowState.Minimized)
{
notifyIcon1.Visible = true;
this.Hide();
this.ShowInTaskbar = false;
}
} private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e)
{
if (this.ShowInTaskbar == false)
{
notifyIcon1.Visible = true;
this.ShowInTaskbar = false;
this.Show();
this.Activate();
this.WindowState = FormWindowState.Normal;
}
}
2013-12-19
展开全部
设置visiabl属性 把你的this.ShowInTaskbar = true; 换成窗体的visiable属性试试。
this.Visible = true;显示窗体 this.Visible = false;隐藏窗体
this.Visible = true;显示窗体 this.Visible = false;隐藏窗体
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询