views:

292

answers:

1

Most grids use a syntax such as MyGrid[row, col] to reference a particular cell programatically.

How is this done, say, in C#, for the Silverlight DataGrid? All examples I've seen thus far use only XAML.

Thanks.

A: 

If binding the itemssource to an observablecollection, you can get at the rows and volume by modifying that collection. The ui propogates the change automatically

Pierreten