Posted By: Mike Taulty | Jul 15th, 2008 @ 12:15 PM | 11,079 Views | 3 Comments
The DataGrid is one of the more complex controls in Silverlight 2 Beta 2 and lends itself towards line-of-business applications. Here we take a look at getting started in using it to display data.
Media Downloads:
Rating:
0
0
Thanks for the tutorial Mike!  You made getting started with the grid easy for me!

This example works fine, but:

 

Don't forget to implement the FirePropertyChanged method!!

Ifelse the datagrid won't update is you click the 'Changes' button!

 

void

{

  if (PropertyChanged != null)

  {

FirePropertyChanged(string property)

     PropertyChanged (this, new PropertyChangedEventArgs(property));

  }

}

Great tutorial! thank you for that!

Microsoft Communities