You only see this problem when you do not have several cells selected, ie, it only occurs when the currencyedit cell is the currentcell and no other cells are selected. Is this correct?
This does appear to be a problem. Until we get this corrected, I think you can work around it by handling the TableControlKeyDown event.
private void gridGroupingControl1_TableControlKeyDown(object sender, GridTableControlKeyEventArgs e)
{
if(e.Inner.KeyCode == Keys.C && (e.Inner.Modifiers & Keys.Control) != 0)
{
if(this.gridGroupingControl1.TableModel.Selections.Count == 0)
{
Clipboard.SetDataObject(this.gridGroupingControl1.TableModel.CurrentCellRenderer.ControlText);
e.Inner.Handled = true;
}
}
}