コード例 #1
0
ファイル: RadForm1.cs プロジェクト: wikishaun/winforms-sdk
 void radGridView1_CreateRow(object sender, GridViewCreateRowEventArgs e)
 {
     if (e.RowType == typeof(GridDataRowElement))
     {
         e.RowType = typeof(CustomRowElement);
     }
 }
コード例 #2
0
 protected override void OnCreateRow(object sender, GridViewCreateRowEventArgs e)
 {
     if (object.ReferenceEquals(e.RowType, typeof(GridDataRowElement)))
     {
         e.RowType = typeof(RowDetailsRowElement);
     }
     base.OnCreateRow(sender, e);
 }
コード例 #3
0
ファイル: SummaryView.cs プロジェクト: heshamnet16/Orphanage3
 private void gridOrphans_CreateRow(object sender, GridViewCreateRowEventArgs e)
 {
 }