透明な WinForms アプリを作成していますが、タスク マネージャーの [アプリケーション] タブにアプリが表示されないようにしたいと考えています。プロセスに表示されるという事実に問題はありません(実際には表示されるはずです)。私が設定した場合:
this.ShowInTaskbar = false;
タスクバーからのみ非表示になります。
私が持っている完全なコード ラベルから作られたタイマーがあります
public Form1()
{
InitializeComponent();
this.BackColor = Color.LimeGreen;
this.TransparencyKey = Color.LimeGreen;
Timer time = new Timer();
time.Interval = 1000;
time.Tick += new EventHandler(time_Tick);
time.Start();
this.ShowInTaskbar = false;
}
void time_Tick(object sender, EventArgs e)
{
label1_hour.Text = DateTime.Now.Hour.ToString() ;
label_minute.Text = DateTime.Now.Minute.ToString();
label_second.Text = DateTime.Now.Second.ToString();
}