求教MessageBox 的默认执行
展开全部
不用messagebox,自己写个窗体来显示信息,显示时用show方法(即不要ShowDialog();)
1
//Form2代码:放一个label来显示信息就好
1
2
3
4
5
6
7
8
public partial class Form2 : Form
{
public Form2(string str)
{
InitializeComponent();
label1.Text = str;
}
}
//Form1调用代码
Form2 f2 = new Form2("hello world");
f2.Show();
int a = 0; //不会停,会直接执行下面代码
1
//Form2代码:放一个label来显示信息就好
1
2
3
4
5
6
7
8
public partial class Form2 : Form
{
public Form2(string str)
{
InitializeComponent();
label1.Text = str;
}
}
//Form1调用代码
Form2 f2 = new Form2("hello world");
f2.Show();
int a = 0; //不会停,会直接执行下面代码
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询