how to set the default height of a grid row and default width of a grid column through code behind
Hi,
The xamGrid has a property called RowHeight which you can set that will apply to all rows.
If you want to do this for a specific row. You could either loop through all the rows and set the Height property yourself, or use the IntializeRow event to set the height for a row as it's accessed.
For Columns, you can set the ColumnWidth on the xamGrid which will apply to all columns. Or you can access a particular column and set it's width.
http://help.infragistics.com/NetAdvantage/Silverlight/2011/1/CLR4.0/?page=xamGrid_Change_Column_Width_Settings.html
Hope this helps,
-SteveZ
Hello,
Were you able to set the height and width?
Sincerely,ValerieDeveloper Support Engineer Infragisticswww.infragistics.com/support
yes i could set it. thanks