SlimDX - 终止线程
我创建了新窗口,并在新线程上使用了 SlimDX.Windows.MessagePump.Run 。 我怎样才能停止这个循环?
I created new window and I used SlimDX.Windows.MessagePump.Run on a new thread.
How can I stop that loop?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您将表单作为参数传递给 MessagePump.Run,则只需在该表单上调用 Close() 即可,这将停止消息泵循环。我在 3DAPI 中就是这样做的。查看此源文档查看如何执行此操作的示例< /a> (靠近文件底部,在 DirectEngine 类中,第 572 行)。
If you're passing in a Form as a parameter to MessagePump.Run, you can simply call Close() on that form, which will stop the message pump loop. That's how I did it in my 3DAPI. Look at this source document to see an example of how to do it (near the bottom of the file, in the DirectEngine class, on line 572).