我有一個ListView控件「lstStudents」,我已經添加了ListView中的複選框viewControl.I需要添加一個Select All複選框,導致檢查ListView中的所有複選框我使用下面的代碼,但它不起作用。Listview控件問題
private void chkAll_CheckedChanged(object sender, EventArgs e)
{
foreach (Control cont in lstStudents.Controls)
{
if (cont.GetType() == typeof(CheckBox))
{
(cont as CheckBox).Checked = true;
}
}
}
我使用C#Windows窗體......
你在asp.net工作的一個額外的參考驗證? – 2010-09-19 05:58:08