How to create a custom double-click event for a Button

旧时模样 提交于 2019-11-28 04:53:31

问题


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.");
}

回答1:


The Button control (assuming you're in a winforms app) does not support double click as a native event. You would need to create your own control, perhaps by inheriting from the framework provided button, and listen for two clicks within the relevant time, before firing your DoubleClick event.



来源:https://stackoverflow.com/questions/4397672/how-to-create-a-custom-double-click-event-for-a-button

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!