如果所选行为0,我想显示消息“你没有选择任何行”。
但是,即使我点击datagridview中的第一行,我跟踪它,所选行总是给我0。
为什么会这样?
以下是代码:
MessageBox.Show(dataGridView1.SelectedRows.Count.ToString()); // below function always run, because the selected rows always 0, even i clicked the first row in datagridview (when run the program)
if (dataGridView1.SelectedRows.Count == 0)
{
if (choice.comboBox1.Text == "English")
{
System.Media.SoundPlayer sound = new System.Media.SoundPlayer(@"C:\Windows\Media\Windows Exclamation.wav");
sound.Play();
MessageBox.Show("You Have Not Selected Any Rows!", "Error");
}
}
else
{
DeleteDatabase(sender, e);
}
答案 0 :(得分:6)
MSDN说
SelectionMode属性必须设置为FullRowSelect或 RowHeaderSelect用于填充的SelectedRows属性 选定的行。
您需要相应地设置此属性,否则不要设置SelectedRows。