사용자 실수로 인해 두번이상 실행을 막는 구문입니다. 자세한 내용은 주석을 참고해주세요. // 클래스 밖에서 선언해주세요. [DllImport("user32.dll")] public static extern bool IsIconic(IntPtr hWnd); [DllImport("user32.dll")] public static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow); [DllImport("user32.dll")] public static extern bool SetForegroundWindow(IntPtr hWnd); public static int SW_RESTORE = 9; // Program.cs 메인함수 내에 추가해주세요. 메인폼 들어가기..