외부 애플리케이션에서 Windows Forms TextBox의 콘솔 출력 캡처
이 가이드에서는 .NET의 프로세스 관리 기능을 사용하여 별도 프로그램의 콘솔 출력을 Windows Forms 애플리케이션 내의 TextBox로 리디렉션하는 방법을 보여줍니다.
구현 단계:
Process
객체를 인스턴스화하여 외부 콘솔 애플리케이션을 나타냅니다.StartInfo
속성을 설정하여 외부 프로그램의 경로(FileName
)를 지정하고, 셸 실행을 비활성화하고(UseShellExecute = false
), 표준 출력 및 오류 리디렉션을 활성화(RedirectStandardOutput = true
)합니다. , RedirectStandardError = true
). 또한 이벤트 발생(EnableRaisingEvents = true
)을 활성화합니다.OutputDataReceived
이벤트를 구독하세요. 이 이벤트 핸들러는 리디렉션된 출력 스트림을 수신합니다.다음은 이 프로세스를 보여주는 C# 예입니다.
<code class="language-csharp">void Method() { var process = new Process(); process.StartInfo.FileName = @"C:\ConsoleApp.exe"; // Replace with your console app's path process.StartInfo.UseShellExecute = false; process.StartInfo.RedirectStandardOutput = true; process.StartInfo.RedirectStandardError = true; process.EnableRaisingEvents = true; process.OutputDataReceived += Process_OutputDataReceived; process.Start(); process.BeginErrorReadLine(); process.BeginOutputReadLine(); } private void Process_OutputDataReceived(object sender, DataReceivedEventArgs e) { // Update the TextBox with the received data (e.Data) on the UI thread. if (e.Data != null) { this.BeginInvoke((MethodInvoker)delegate { this.textBox1.AppendText(e.Data + Environment.NewLine); // Assuming your TextBox is named textBox1 }); } }</code>
"C:ConsoleApp.exe"
를 외부 콘솔 애플리케이션의 실제 경로로 바꾸는 것을 잊지 마세요. BeginInvoke
메서드는 TextBox가 UI 스레드에서 안전하게 업데이트되도록 보장하여 크로스 스레딩 예외를 방지합니다.
위 내용은 콘솔 출력을 Windows Forms TextBox로 리디렉션하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!