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