WpfAnnotatedThumbnailViewer class, a WPF control - inheritor of WpfThumbnailViewer class, is intended for viewing image thumbnails with annotations.
WpfAnnotatedThumbnailViewer class extends the functionality of WpfThumbnailViewer class and allows to:
' The project, which uses this code, must have references to the following assemblies: ' - Vintasoft.Imaging.Annotation.Wpf.UI Private Sub LoadImagesWithAnnotation(wpfAnnotatedThumbnailViewer As Vintasoft.Imaging.Annotation.Wpf.UI.WpfAnnotatedThumbnailViewer, filename As String) wpfAnnotatedThumbnailViewer.Images.Add(filename) End Sub
// The project, which uses this code, must have references to the following assemblies: // - Vintasoft.Imaging.Annotation.Wpf.UI void LoadImagesWithAnnotation( Vintasoft.Imaging.Annotation.Wpf.UI.WpfAnnotatedThumbnailViewer wpfAnnotatedThumbnailViewer, string filename) { wpfAnnotatedThumbnailViewer.Images.Add(filename); }