当前位置: 代码迷 >> .NET分析设计 >> C# keypress 事件激发 Click 事件解决思路
  详细解决方案

C# keypress 事件激发 Click 事件解决思路

热度:389   发布时间:2016-05-01 22:37:32.0
C# keypress 事件激发 Click 事件


        private void TextBox1_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (e.KeyChar == (char)Keys.Enter)
            {
                //这里要让它激发  Buttonl_Click  事件  忘了怎么写
            }
        }

        private void Buttonl_Click(object sender, EventArgs e)
        {
           .......................
        }


------解决方案--------------------
 button1.PerformClick();
------解决方案--------------------
Buttonl_Click(Button1,null)
  相关解决方案