web-dev-qa-db-fra.com

Comment masquer le formulaire de ma candidature dans la barre des tâches de Windows?

Comment masquer le nom de mon application dans la barre des tâches de Windows, même lorsqu'il est visible?

Actuellement, j'ai le code suivant pour initialiser et définir les propriétés de mon formulaire:

this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(0, 0);
this.Controls.Add(this.eventlogs);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "Form1";
this.Text = "Form1";
this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
24
Farna

Pour empêcher votre formulaire d'apparaître dans la barre des tâches, définissez sa propriété ShowInTaskbar sur False.

this.ShowInTaskbar = false;
56
Cody Gray