Winform 遍歷 ListBox中的所有項

月濺星河發表於2019-02-18
 foreach(DataRowView row in listBox.Items )
{
    MessageBox.Show(row["displayMember"].ToString())
}

相關文章