25.11.2023 18:57
C# Hide Program to TaskManager
private void Form1_Load(object sender, EventArgs e)
{
this.ShowInTaskbar = false;
this.ShowIcon = false;
this.FormBorderStyle = FormBorderStyle.FixedToolWindow;
}
private void Form1_Load(object sender, EventArgs e)
{
this.ShowInTaskbar = false;
this.ShowIcon = false;
this.FormBorderStyle = FormBorderStyle.FixedToolWindow;
}