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.
主窗体将创建另一个窗体,子新窗体将在加载时创建一个线程。当用户关闭子表单时,我为关闭的表单创建事件处理程序以中止其线程。
但是当用户尝试关闭主窗体时,子窗体的线程仍在运行,如何中止它,用户关闭子窗体或主窗体。
将 Thread 的IsBackground()属性设置为 True。这将允许它在应用程序退出时自动关闭。