Form1リストビューに別のスレッドをメールフォームで挿入しようとしていますが、何とか動作しません。ここに私のコードです:別のスレッドからリストビューに挿入する
private delegate void InsertIntoListDelegate(string email);
private void InsertIntoList(string email)
{
if (f1.listView1.InvokeRequired)
{
f1.listView1.Invoke(new InsertIntoListDelegate(InsertIntoList), email);
}
else
{
f1.listView1.Items.Add(email);
f1.listView1.Refresh();
}
}
私はあなたにお手伝いできる場合はありがとうございます。
'それが何をして動作しませんwork'ないのですか?どのようなエラーが出ますか? –
エラーがないので、Listviewに何も追加されません。 – Jason
if(!f1.InvokeRequired)throw new Exception( "無効なフォームオブジェクト"); –