发布网友 发布时间:2022-04-24 02:36
共1个回答
热心网友 时间:2023-07-06 14:58
窗体上添加一个NotifyIcon空间 ,当窗体最小化时if(this.WindowState==FormWindowState.Normal&&this.Visible==true)
{
this.notifyIcon1.Visible=true;
this.WindowState=FormWindowState.Minimized;
this.Visible=false;
this.ShowInTaskbar=false;
}