当前位置:主页 > 软件编程 > .NET代码 >

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

时间:2021-05-18 09:42:47 | 栏目:.NET代码 | 点击:

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;
}

您可能感兴趣的文章:

相关文章