Skip to content

Instantly share code, notes, and snippets.

@longtth
Created July 5, 2018 02:30
Show Gist options
  • Select an option

  • Save longtth/08214269b9042482a39b32b69e01f155 to your computer and use it in GitHub Desktop.

Select an option

Save longtth/08214269b9042482a39b32b69e01f155 to your computer and use it in GitHub Desktop.
Chạy qua tất cả các cell trong GridView để xử lý với nó.
foreach(DataGridViewRow row in yourDataGridView.Rows)
{
foreach(DataGridViewCell cell in row.Cells)
{
//do operations with cell
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment