首页 > 编程 > C# > 正文

C#怎样才能实现窗体最小化到托盘呢?

2020-01-24 03:51:01
字体:
来源:转载
供稿:网友
private void Form1_Resize(object sender, System.EventArgs e) {
    if (this.WindowState == FormWindowState.Minimized) {
        this.Visible = false;
        this.notifyIcon1.Visible = true;
    }
}

private void notifyIcon1_Click(object sender, System.EventArgs e) {
    this.Visible = true;
    this.WindowState = FormWindowState.Normal;
    this.notifyIcon1.Visible = false;
}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表