タスクトレイにアイコンを表示するようにしたときに、アプリケーションのウィンドウを表示させず、タスクバーにも表示させない方法。
フォームのWindowStateをMinimizedに、ShotInTaskbarをFalseにすればよい。
this.ShowInTaskbar = false; this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
タスクトレイにアイコンを表示するようにしたときに、アプリケーションのウィンドウを表示させず、タスクバーにも表示させない方法。
フォームのWindowStateをMinimizedに、ShotInTaskbarをFalseにすればよい。
this.ShowInTaskbar = false; this.WindowState = System.Windows.Forms.FormWindowState.Minimized;