Beispiel #1
0
 private void DataGridViewMembers_ViewRowFormatting(object sender, Telerik.WinControls.UI.RowFormattingEventArgs e)
 {
     if (e.RowElement is Telerik.WinControls.UI.GridTableHeaderRowElement)
     {
         e.RowElement.Font = new Font("Tahoma", 9, FontStyle.Bold, GraphicsUnit.Point);
     }
 }
 protected void OnViewRowFormatting(object sender, RowFormattingEventArgs e)
 {
     if (this.ViewRowFormatting == null)
     {
         return;
     }
     this.ViewRowFormatting(sender, e);
 }
 internal void CallViewRowFormatting(object sender, RowFormattingEventArgs e)
 {
     this.OnViewRowFormatting(sender, e);
 }