GridView, . - Master GridView MasterRowExpanded. DisplayFormat:
private void gridView1_MasterRowExpanded_1(object sender, CustomMasterRowEventArgs e) {
GridView master = sender as GridView;
GridView detail = master.GetDetailView(e.RowHandle, e.RelationIndex) as GridView;
detail.Columns["SomeColumn"].DisplayFormat = ....
}