I'm using Leadtools SDK to build an C# WPF application that opens and shows PDF files.
At the mommet I only have two requirements:
- Continuous scroll (like in Adobe Reader)
- Zoom in/out
I'm having a hard time trying to figure out which is the right control for this. These are the main controls that Leadtools gives me:
- ImageViewer
- ImageList
- RasterImageViewer
Since I want to scroll all PDF pages I'm using ImageList control. This control is able to show multiple pages but it doesn't have any properties like ScaleFactor to control the zoom. ImageViewer and RasterImageViewer both have ScaleFactor but they lack the ability to show multiple pages, they only show one at a time.
Which control is the right one for my scenario? And how to approch it?