(Leadtools.Controls)

ImageViewer Class

Show in webframe
Example 





Members 
Represents a scrollable control that displays an image with optional interactive UI operations.
Object Model
Syntax
public class ImageViewer : Leadtools.Control 
Public Class ImageViewer 
   Inherits Leadtools.Control
public sealed class ImageViewer : Leadtools.Control 
@interface LTImageViewer :LTView<NSCoding>
public class ImageViewer extends ViewGroup
function Leadtools.Controls.ImageViewer()
Remarks

Usage

To use the ImageViewer class in your Windows Runtime application please see Using LEADTOOLS Viewer Controls in Visual Studio for WinRT (Windows Store)

Features

ImageViewer supports the following functionality:

Example
Copy Code  
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);
}
Requirements

Target Platforms

See Also

Reference

ImageViewer Members
Leadtools.Controls Namespace

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.