在KeyPress事件中,有时候用Ascii比较方便
int keyAscii = (int)e.KeyChar;
switch (keyAscii)
{
case 3:
// ctrl + c
case 22:
// ctrl + v