示例#1
0
        void grid_CurrentCellActivating(object sender, GridCurrentCellActivatingEventArgs e)
        {
            var style = this.grid.Model[e.CellRowColumnIndex.RowIndex, e.CellRowColumnIndex.ColumnIndex];

            if (style.CellType == "DateTimeEdit")
            {
                Thread.CurrentThread.CurrentCulture = style.CultureInfo;
            }
        }
示例#2
0
 void TableControl_CurrentCellActivating(object sender, GridCurrentCellActivatingEventArgs e)
 {
     this.gridGroupingControl1.TableControl.Refresh();
 }
示例#3
0
 void output_CurrentCellActivating(object sender, GridCurrentCellActivatingEventArgs e)
 {
     e.Cancel = true;
 }
示例#4
0
 private void grid_CurrentCellActivating(object sender, GridCurrentCellActivatingEventArgs e)
 {
     TraceUtil.TraceCurrentMethodInfoIf(traceDebug, this, e);
     AppendOutput("CurrentCellActivating", e);
 }