Hi,
I was wondering if there is a way to make the "ZoomSelection" to happen immediately on releasing the button instead of when you click in the region.
Regards,
Magnus
"ZoomSelection" - immediately after release of mousebutton
Moderator: Alex
-
- Posts: 6
- Joined: Thu Aug 04, 2011 3:02 pm
-
- Site Admin
- Posts: 2397
- Joined: Thu Jul 10, 2008 2:21 pm
Re: "ZoomSelection" - immediately after release of mousebutton
Hello Magnus,
Please download the latest version (4.3.27.9) of VintaSoftImaging.NET SDK and use the class below:
Best regards, Alexander
Please download the latest version (4.3.27.9) of VintaSoftImaging.NET SDK and use the class below:
Code: Select all
class MyZoomSelection : ZoomSelection
{
public MyZoomSelection(ImageViewer viewer)
: base(viewer)
{
}
protected override void OnMouseUp(System.Windows.Forms.MouseEventArgs e)
{
base.OnMouseUp(e);
Zoom();
}
}
-
- Posts: 6
- Joined: Thu Aug 04, 2011 3:02 pm
Re: "ZoomSelection" - immediately after release of mousebutton
Then i would need the download link to that version. 

-
- Site Admin
- Posts: 2397
- Joined: Thu Jul 10, 2008 2:21 pm
Re: "ZoomSelection" - immediately after release of mousebutton
Hello Magnus,
Please contact support with this problem.
Best regards, Alexander
Please contact support with this problem.

Best regards, Alexander