Created
July 5, 2018 02:30
-
-
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ó.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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