DataGridView提供了多種方法來查找數據,以下是常用的幾種方法:
foreach(DataGridViewRow row in dataGridView1.Rows)
{
foreach(DataGridViewCell cell in row.Cells)
{
if(cell.Value != null && cell.Value.ToString() == "目標數據")
{
// 找到了目標數據,執行相應操作
}
}
}
// 設置數據源為BindingSource對象
dataGridView1.DataSource = bindingSource1;
// 設置過濾條件
bindingSource1.Filter = "列名 = '目標數據'";
var query = from DataGridViewRow row in dataGridView1.Rows
where row.Cells["列名"].Value.ToString() == "目標數據"
select row;
foreach(DataGridViewRow row in query)
{
// 找到了目標數據,執行相應操作
}
以上是常用的幾種方法,根據具體的需求和數據結構可以選擇適合的方法來查找數據。