Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
516 views
in Technique[技术] by (71.8m points)

c# - Minimize to tray make form unvisible

I am using NotifyIcon to make my form minimize to tray to work at background.

However below code doesn't show app icon at all. Form goes totally invisible. I have to kill that from task manager.

private void Button1_Click(object sender, EventArgs e)
{
    this.WindowState = FormWindowState.Minimized;
    if (FormWindowState.Minimized == this.WindowState)
    {   
        Hide();
        this.ShowInTaskbar = false;
        notifyIcon1.Visible = true; 
    }
}

What could be the reason? I want to see my app-icon to re-open the form.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You need to assign an Icon to NotifyIcon to show it in system tray. Also you need to set Visible to true.

You can set properties using property grid at design time or you can set them by code. For example, you can use such code:

this.notifyIcon1.Icon = this.Icon;
this.notifyIcon1.Visible = true;

If you don't set the Icon or if the visible is not true, it will not show the icon.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...