本文介绍了如何在Datagridview中获取标头名称的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
美好的一天
如何在不使用索引的情况下在datgridview中获取标头名称的值?
谢谢
Good day
How do I get the value of the header name in a datgridview without using indexes?
Thanks
推荐答案
foreach (DataGridViewColumn column in dataGridView.Columns)
{
//Maybe check if value matches
if(column.HeaderText == "Column1")
{
//Do Something
}
}
希望有帮助.
最好的问候
Hope that helps.
Best Regards
if (dataGridview.CurrentRow.Cells["Comlumn header name"].Value.ToString() == "Cell in Datagridview")
{
//Do Something
}
这篇关于如何在Datagridview中获取标头名称的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!