Windows 窗体应用程序中 RichTextBox 上的即时日志显示
我有一个应用程序,我想在 Windows 窗体 Richtextbox 上显示日志(使用 log4net)。我从 log4net 获取日志消息,但在 GUI 响应时无法将其显示在框中。有什么帮助吗?
I've an application which I want to display logs (using log4net) on windows form richtextbox. I'm getting the log message from log4net but i could not be able to display it on the box while the GUI is responsive. any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在一个线程上运行表单,并在另一个线程上运行计算,这将更新表单对象。
You should run the form on one thread and the computation on another thread which will update the form object.