I\'m currently writing an app for Windows 8 using Metro and C#. In my app I use a combination of scrollviewer and gridview to show my data. My problem is however, how can I make
The "get_pageTranslation" is actually the "PageTranslation" property on the MouseWheelParameters, you access it by saying:
wheelParameters.PageTranslation
this:
get_PageTranslation()
is the name of the method which implements the PageTranslation property, but it is not accessible from C# or C++ applications.