I want to pass in value into the custom User Control "CustomerBilling " programmatically inside tab control for each row in RadGridView. Which event should I call? Is it RowLoaded? How I could I access the User Control of "CustomerBilling" in C#? In Xaml, I could just type the paramter "ModifiedBy", but I do not want to set the value in there. How could I do it via RowLoaded event? Thanks.
<telerik:RadGridView.RowDetailsTemplate> <DataTemplate> <telerik:RadTabControl Name="RadTabControl1" Width="702" HorizontalAlignment="Center" Margin="8" VerticalAlignment="Center" > <telerik:RadTabItem Header="Billing Address" > <local:CustomerBilling ModifiedBy="adfdf" /> </telerik:RadTabItem> <telerik:RadTabItem Header="Shipping Address" > <local:CustomersShipping /> </telerik:RadTabItem> </telerik:RadTabControl> </DataTemplate> </telerik:RadGridView.RowDetailsTemplate>