gpt4 book ai didi

c# - c# 中的非自动阻塞 MessageBoxes

转载 作者:可可西里 更新时间:2023-11-01 08:13:59 27 4
gpt4 key购买 nike

有人知道 .NET 中的 messageBox 在关闭之前不会阻塞创建它的线程吗?

最佳答案

private void ShowMessageBox(string text, string caption)
{
Thread t = new Thread(() => MyMessageBox(text, caption));
t.Start();
}

private void MyMessageBox(object text, object caption)
{
MessageBox.Show((string)text, (string)caption);
}

您可以使用文本和标题调用 ShowMessageBox()。这只是一个简单的示例,您可以添加按钮或图标所有者或您想要的其他参数。

关于c# - c# 中的非自动阻塞 MessageBoxes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4245138/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com