can't get pressing CTRL+Z
how I can do it?
(C#)
how I can do it?
(C#)
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
if (keyData == (Keys.Control | Keys.Z))
{
// anything
return true;
}
return base.ProcessCmdKey(ref msg, keyData);
}
Comment