Does anyone know if it is possible to access a DataGrid column using its x: name (as defined in xaml) from the code behind?
I know that I can use the following code:
myDataGridList.Columns[0].Header = "Some Data";
.. but I would rather use something like this if possible:
myDataGridList.Columns["ColumnName"].Header = "Some Data";
Thanks in advance.
silverlight xaml
cyberbobcat
source share