This question is locked. New answers and comments are not allowed.
HI Here is my datatemplate <DataTemplate x:Key="iLableAreaCellTemplate"> <StackPanel Orientation="Horizontal" > <iLabel LabelText="{Binding Column1}" IsWordwrap="False" Mandatory="False" Width={Binding....} /> </StackPanel> </DataTemplate> Assign to the gridviewdatacolumn's cell template gvc.CellTemplate = Resources["iLableAreaCellTemplate"] as DataTemplate; I have assigned above datatemplate to celltemplate of Radgridview Column I have written custom logic for texttrimming for the iLable control in silverlight 3, for texttrimming to happen i need the width of the parent (that is cell's width) How can i achive this?