Code for modifying the scroll wheel failure after full screen deep zoom

Source: Internet
Author: User

// Code for modifying the scroll wheel failure after deep zoom full screen

 

Code

Public page ()
{
Initializecomponent ();

// Because the default mouse wheel generated by deepzoom is called in Javascript mode, JavaScript is not supported in full screen mode. If you use Silverlight 3, you can modify page_load manually.

This. MSI. mousewheel + = new mousewheeleventhandler (msi_mousewheel );


}

// Modify the following function.

Void msi_mousewheel (Object sender, system. Windows. Input. mousewheeleventargs E)
{
Double newzoom = zoom;
If (E. Delta <0)
Newzoom // = 1.3;
Else
Newzoom * = 1.3;

Zoom (newzoom, msi. elementtologicalpoint (this. lastmousepos ));
MSI. capturemouse ();
}
// The wheel. CS with the image can be deleted, so that the scroll wheel is supported for deepzoom in full screen mode.

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.