this.textBox1_KeyPress((object)this.textBox1,new System.Windows.Forms.KeyPressEventArgs(键值参数))
这样就可以调用那个事件
private void textBox1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
{

}

解决方案 »

  1.   

    可能我没理解你的意思,直接调用鼠标事件不行吗?
    Form1_MouseDown(this,null);
    或是你想调用OnMouseDown()方法?
      

  2.   

    http://expert.csdn.net/Expert/topic/1169/1169376.xml?temp=.2905847上的内容可能对你有所帮助。
      

  3.   

    你的意思好像是说模拟Windows中的标准鼠标事件吧。这样的话,就直接发送消息吧。
      

  4.   

    事件是基于函数的委托,这方面可以查看MSDN