Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我找不到将所有单元格放入UltraGrid. 我想在 foreach 循环中通过它们。
UltraGrid
有没有办法让他们全部获得?
遍历所有Rows网格,然后遍历所有Cells行:
Rows
Cells
foreach(var row in myGrid.Rows) { foreach(var cell in row.Cells) { // Do stuff } }