public Form1()
{
InitializeComponent();
this.ShowInTaskbar = false;
this.WindowState = FormWindowState.Minimized;
}
private void Form1_Shown(object sender, EventArgs e)
{
this.Hide();
this.WindowState = FormWindowState.Normal;
this.ShowInTaskbar = true;
}

被折叠的 条评论
为什么被折叠?



