停止当前线程,直到从另一个窗口接收到输入 wpf C#

发布于 2024-08-09 20:54:25 字数 381 浏览 2 评论 0原文

我想停止其他Thread,直到用户在此窗口中提供输入...给出我所拥有的代码:

if (!File.Exists(@"DiscoveryConfig.bin"))
{
    Application.Current.Dispatcher.Invoke((showRangeInputWindow)delegate()
    {
        new WinSubnetRangeInput().Show();
    }, null);
}

让我们说以下代码执行Ping扫描网络节点,但首先它会打开一个窗口来获取范围。但是,如何停止扫描直到在此窗口中收到输入...

我可以通过获取线程 ID 来做到这一点吗?

I want to stop other Threads until the user provides input in this window... giving code that I have as such:

if (!File.Exists(@"DiscoveryConfig.bin"))
{
    Application.Current.Dispatcher.Invoke((showRangeInputWindow)delegate()
    {
        new WinSubnetRangeInput().Show();
    }, null);
}

Lets say the following code do a Ping scan of network nodes but first it opens a window to take a range. But, how to stop scanning until input is received in this window...

Could I do this by getting thread ID?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

荭秂 2024-08-16 20:54:25

user .ShowDialog()

如果您的窗口名为 secondaryRibbonWindow 则使用

secondRibbonWindow.showDialog();

user .ShowDialog()

if you window is named secondRibbonWindow then use

secondRibbonWindow.showDialog();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文