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;
}
Winform 窗体隐藏运行
最新推荐文章于 2024-09-06 14:53:43 发布
131

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



