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.
gridview 对象的元素的语法是什么?
我希望能够在 Visual Studio 2010 中操作 gridview 对象,就好像它是一个二维数组,其中该数组的每个单独元素都包含一个变量。
我怎么能做这样的事情:
GridView1.SetElementAt(X,Y) = strEventName
其中 X 是行索引,Y 是列索引。
使用行和单元格属性:
GridView1.Rows(X).Cells(Y).Text = strEventName