Rich interactive user interface for zooming, panning, scrolling, magnify glass with support for mouse and touch. For more information, refer to DefaultInteractiveMode.
Automatic horizontal and vertical scroll and pan through the ScrollMode property.
Converting a point or a rectangle between image (logical) and control (display or physical) coordinates using the ConvertPoint and ConvertRect methods.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Controls;
[TestMethod]
public async Task<ImageViewer> ImageViewerExample()
{
ImageViewer imageViewer = new ImageViewer();
Uri imageUrl = new Uri("ms-appx:///Assets/PngImage2.png");
// Set the interactive mode to PanZoom
var interactiveMode = new Leadtools.Controls.ImageViewerPanZoomInteractiveMode();
imageViewer.DefaultInteractiveMode = interactiveMode;
// Set the image Source
imageViewer.Source = new BitmapImage(imageUrl);
}