Minimize to tray make form unvisible

前端 未结 1 1343
别跟我提以往
别跟我提以往 2020-12-21 08:27

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 invis

相关标签:
1条回答
  • 2020-12-21 08:57

    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.

    0 讨论(0)
提交回复
热议问题