//布局
public void resize(Form form)
{
form.Width = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Width;
form.Height = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Height;
form.Top = 0;
form.Left = 0;
}
谁让你真的去最大化,这样就好了
ShowInTaskBar=false就不在状态栏显示了