I'm developing in C# on the .NET Framework. I already have an event on Button which happens on one click. I also want to have an event on Double Click for the same Button.
How do I create Double click event on Button? I tried with this, but it doesn't work:
this.SetStyle(ControlStyles.StandardDoubleClick, true);
this.button1.DoubleClick += new System.EventHandler(button1_DoubleClick);
private void button1_DoubleClick(object sender, EventArgs e)
{
MessageBox.Show("You are in the Button.DoubleClick event.");
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…