예제 #1
0
 internal CellPreparingEventArgs(
     GridviewColumn column,
     GridviewRowCell cell,
     object dataItem,
     int rowIndex)
 {
     this.Column   = column;
     this.Cell     = cell;
     this.DataItem = dataItem;
     this.RowIndex = rowIndex;
 }
예제 #2
0
 internal HeaderRowPreparingEventArgs(
     GridviewColumn column)
 {
     this.Column = column;
 }