下面的代码工作正常,但我正在寻找一种方法将所有3组合成一个invoke语句:
this.Invoke(new MethodInvoker(delegate () {
String.Format(
"------------------------------------------------------------")
);
}));
this.Invoke(new MethodInvoker(delegate () {
String.Format(
"- END " + archiveFullName + " -"
);
}));
this.Invoke(new MethodInvoker(delegate () {
String.Format(
"------------------------------------------------------------")
);
}));
我已经尝试过了:
this.Invoke(new MethodInvoker(delegate () {
listBox1.Items.Add(
this.listBox1.Items.Add("--------------------------------------------------------")
this.listBox1.Items.Add("- END " + archiveFullName + " -")
this.listBox1.Items.Add("-------------------------------------------------------")
);
}));
但这似乎不起作用。
任何决议都会很棒!