c# 콘솔 프로그램 실행 시 창 숨기기 방법

1074 단어 콘솔
1. 가장 간단한 방법:
VS에서 선택한 항목을 오른쪽 단추로 누르면 '속성' 을 열고 '출력 유형' 을 '윈도 프로그램' 으로 변경합니다.저장하고 실행하니까 검은색 창이 없어졌어요!
2. 코드로 설정:
<span style="font-family:Microsoft YaHei;font-size:14px;">        #region     
        [DllImport("user32.dll", EntryPoint = "ShowWindow", SetLastError = true)]
        private static extern bool ShowWindow(IntPtr hWnd, uint nCmdShow);
        [DllImport("user32.dll", EntryPoint = "FindWindow", SetLastError = true)]
        private static extern IntPtr FindWindow(string lpClassName, string lpWindowName);


        public static void WindowHide(string consoleTitle)
        {
            IntPtr a = FindWindow("ConsoleWindowClass", consoleTitle);
            if (a != IntPtr.Zero)
                ShowWindow(a, 0);//    
            else
                throw new Exception("can't hide console window");
        }
        #endregion



    
//WindowHide(System.Console.Title);

WindowHide(System.Console.Title);</span>

좋은 웹페이지 즐겨찾기