public class MyTextBox : System.Windows.Forms.TextBox
{
protected override void WndProc(ref Message m)
{
switch(m.Msg)
{
case 0x0302://WM_PASTE
//TODO:Add your code here
break;
default:
break;
}
base.WndProc(ref m);
}
}
然后把你的System.Windows.Forms.TextBox都换成 MyTextBox