单击图片框

本文关键字:单击 | 更新日期: 2023-09-27 18:33:06

我想知道如何使用文本框单击图片框。

private void textBox2_KeyPress(object sender, KeyPressEventArgs e)
{
   if (e.KeyChar == (char)Keys.Enter)
   {
       // I wanna a method to click on PictureBox1 here 
   }
}

单击图片框

从另一个事件调用一个事件是一个坏主意。(事实上,在代码中调用用户驱动的事件总是一个坏主意)。

如果要运行某些代码,请将其放在自己的方法中,并从每个事件调用它。

private void textBox2_KeyPress(object sender, KeyPressEventArgs e)
{
   if (e.KeyChar == (char)Keys.Enter)
   {
             MyPictureBoxCode();
   }
}
private void PictureBox_Click(object sender, EventArgs e)
{
          MyPictureBoxCode();
}
private void MyPictureBoxCode()
{
            //common code
}

PictureBox Click事件和Textbox2 Click事件必须与设计器.cs相关联。