void gridDataBoundGrid1_ResizingRows(object sender, GridResizingRowsEventArgs e)
 {
     this.gridDataBoundGrid1.BeginUpdate();
     SetupCheckBox();
     this.gridDataBoundGrid1.EndUpdate();
     this.gridDataBoundGrid1.Refresh();
 }
Exemplo n.º 2
0
 void grid_ResizingRows(object sender, GridResizingRowsEventArgs e)
 {
     if (e.Reason == GridResizeCellsReason.MouseUp || e.Reason == GridResizeCellsReason.ResetDefault || e.Reason == GridResizeCellsReason.ResetHide)
     {
         grid.BeginUpdate();
         //use BeginInvoke to reset the breaks after the event handling completes...
         grid.BeginInvoke(new MethodInvoker(SetBreaks));
     }
 }
Exemplo n.º 3
0
 private void grid_ResizingRows(object sender, GridResizingRowsEventArgs e)
 {
     TraceUtil.TraceCurrentMethodInfoIf(traceDebug, this, e);
     AppendOutput("ResizingRows", e);
 }
Exemplo n.º 4
0
 private void TableControl_ResizingRows(object sender, GridResizingRowsEventArgs e)
 {
     e.Cancel = true;
 }