Custom user control doesn't catch any mouse events in c# -


i create custom user control , use in form.

but not capture mouse event! problem? thanks

define event in custom control

private delegate void myclickevent(object sender, eventargs e);  public event myclickevent myclick;    public void onmyclickevent(object sender, eventargs e)         {                 if (myclick != null)                         myclick(sender, e);//execute event         }  

now in mainform

public partial class form1 {         public form1()         {                 mycustombutton.myclick += firethisonclick;         }          private void firethisonclick(object sender, eventargs e)         {                 //this executed on click         } } 

Comments

Popular posts from this blog

c++ - How to add Crypto++ library to Qt project -

c++ - Serialize a class with a Qlist of custom classes as member (using QDataStream) -

Read video using VideoReader function in Matlab? -