Windows form AximageEdit control event initialization
In designer i have initialized the mouse up event like below this.axImgEdit1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.axImgEdit1_MouseUpEvent);
and in code behind , event is written like below. private void axImgEdit1_MouseUpEvent(object sender, MouseEventArgs e)
but in run time it is throwing error. event mouse up is not valid on this activeX control
aximageedit also has its own eventargs, but if i write that it throw compile time error like no overload for matches delegate 'system.eventhandler'
how to handle this third party control events in windows form
链接地址: http://www.djcxy.com/p/35706.html