为什么最小化托盘区没图标显示
private void lab_min_Click(object sender, EventArgs e){
this.Visible = false;
notifyIcon1.Visible = true;
}
private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e)
{
this.Visible = true;
notifyIcon1.Visible = false;
}
这代码到底要怎么弄才能最小化至托盘区啊