控制程序不出现在任务栏上

Posted on 2019-01-25 01:55  努力成长静待花开  阅读(229)  评论(0编辑  收藏  举报

实现效果:

  

知识运用:

  Form类的ShowInTaskbar属性  //控制程序是否显示在任务栏中

  public bool ShowInTaskbar {get; set;}

实现代码:

        private void radioButton2_CheckedChanged(object sender, EventArgs e)
        {
            if (radioButton1.Checked)
                this.ShowInTaskbar = true;
            if (radioButton2.Checked)
                this.ShowInTaskbar = false;
        }