protected override NWidget CreateValueDataCellView(NDataCell dataCell, object rowValue)
            {
                NButton button = new NButton("Copy Code");

                button.Tag    = rowValue;
                button.Click += OnButtonClick;
                return(button);
            }
 protected override ENHorizontalPlacement GetAutomaticHorizontalAlignment(NDataCell dataCell, object rowValue)
 {
     return(ENHorizontalPlacement.Center);
 }
 public override void FormatDefaultDataCell(NDataCell dataCell)
 {
 }