Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在WPF中构建一个点击游戏,当我退出一个房间时它会改变窗口,问题是,当我返回一个我之前退出的房间时,移动线程将不会恢复。
我的问题是,在隐藏一个窗口然后在另一个窗口上使用 .Show() 之后,如何重新启动线程以确保它运行?
您应该在显示窗口时尝试使用 Thread.Pause() 和 Thread.Resume()。