내 C# forms 프로젝트에서이 양식을로드 할 때마다이 메서드를 실행하고 싶습니다.C# 폼이로드 될 때마다 실행되는 프로 시저를 어떻게 만듭니 까?
foreach (Form frm in Application.OpenForms)
{
frm.WindowState = FormWindowState.Normal;
frm.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
frm.Bounds = Screen.PrimaryScreen.Bounds;
}
왜'foreach' 클래스에서 사용할 수 없으며 왜'WindowState'가 존재하지 않습니까? 나는 이것으로 혼란 스럽다. –
양식에 mdiParent가 있습니까? –
[이것은 내가 본 것입니다] – Tom1