VintaSoft Imaging .NET SDK and Plug-ins Discussions
Questions, comments and suggestions concerning VintaSoft Imaging .NET SDK.
Board index < VintaSoft Imaging < VintaSoft Imaging .NET SDK and Plug-ins Discussions
class MyZoomSelection : ZoomSelection
{
public MyZoomSelection(ImageViewer viewer)
: base(viewer)
{
}
protected override void OnMouseUp(System.Windows.Forms.MouseEventArgs e)
{
base.OnMouseUp(e);
Zoom();
}
}
Best regards, Alexander