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

上一篇: 如何使用for循环为多个按钮创建事件处理程序?

下一篇: Windows窗体AximageEdit控件事件初始化