Take the following steps to start a project and to add some code that will demonstrate the automated annotation features of the LEADTOOLS Windows Forms Annotations.
In the "Solution Explorer" window, right-click on the "References" folder for the project and select "Add Reference..." from the context menu. In the "Reference Manager" dialog box, select Browse to the "<LEADTOOLS_INSTALLDIR>\Bin\Dotnet4\" folder (depending on your target platform), and select the following assembly files:
Click the Select button and then press the OK button to add the above references to the application.
Note: Leadtools.Annotations.WinForms.dll is the result of compiling the example project shipped with source code at <LEADTOOLS_INSTALLDIR>\Examples\DotNet\CS\Leadtools.Annotations.WinForms. The LEADTOOLS setup copies a precompiled version of this assembly into the Bin\DotNet4 folder. This assembly contains .NET WinForms annotations automation user-interface helper classes such as AnnAutomationRasterImageViewer and AnnAutomationManagerHelper.
If you are using .NET 4, then this application will required switching the Target framework to full .NET Framework 4.
Switch to code view of the main form and add the following declarations at the top:
using Leadtools;using Leadtools.Controls;using Leadtools.Codecs;using Leadtools.Annotations.Engine;using Leadtools.Annotations.Designers;using Leadtools.Annotations.Rendering;using Leadtools.Annotations.Automation;using Leadtools.Annotations.WinForms;
Add the following private members to Form1:
// Annotations-aware ImageViewerprivate AutomationImageViewer _imageViewer;// Annotations automation manager with WinForms functionalityprivate AutomationManagerHelper _annotations;
Add the following code to in Form1 Load event. This will create a minimum automation application:
protected override void OnLoad(EventArgs e){// Create the viewer and add it to the form_imageViewer = new AutomationImageViewer();_imageViewer.Dock = DockStyle.Fill;Controls.Add(_imageViewer);// Create the annotationsAnnAutomationManager automationManager = new AnnAutomationManager();automationManager.CreateDefaultObjects();// Create the helper_annotations = new AutomationManagerHelper(automationManager);// Create the toolbar and add it to our form_annotations.CreateToolBar();ToolBar toolBar = _annotations.ToolBar;toolBar.Dock = DockStyle.Top;toolBar.Appearance = ToolBarAppearance.Flat;Controls.Add(toolBar);// Load an image into the viewerusing (RasterCodecs codecs = new RasterCodecs())_imageViewer.Image = codecs.Load(@"C:\Users\Public\Documents\LEADTOOLS Images\sample1.cmp");// Create an automation object for itAnnAutomation automation = new AnnAutomation(automationManager, _imageViewer);// Set the container sizeautomation.Container.Size = automation.Container.Mapper.SizeToContainerCoordinates(LeadSizeD.Create(_imageViewer.Image.ImageWidth, _imageViewer.Image.ImageHeight));// Create automation interactive mode to create and manipulate the annotationsAutomationInteractiveMode automationInteractiveMode = new AutomationInteractiveMode();automationInteractiveMode.AutomationControl = _imageViewer;_imageViewer.InteractiveModes.BeginUpdate();_imageViewer.InteractiveModes.Add(automationInteractiveMode);automationInteractiveMode.IsEnabled = true;_imageViewer.InteractiveModes.EndUpdate();// Add the events to show the object context menu and object properties formautomation.OnShowContextMenu += delegate(object sender, AnnAutomationEventArgs showContextMenuEventArgs){if (showContextMenuEventArgs != null && showContextMenuEventArgs.Object != null){AnnAutomationObject automationObject = showContextMenuEventArgs.Object;if (automationObject != null && automationObject.ContextMenu != null){ObjectContextMenu menu = automationObject.ContextMenu as ObjectContextMenu;if (menu != null){menu.Automation = sender as AnnAutomation;menu.Show(this, _imageViewer.PointToClient(Cursor.Position));}}}};automation.OnShowObjectProperties += delegate(object sender, AnnAutomationEventArgs showObjectPropertiesEventArgs){// Show the object properties formusing (AutomationUpdateObjectDialog form = new AutomationUpdateObjectDialog()){try{form.Automation = automation;form.ShowDialog(this);}catch (Exception ex){MessageBox.Show(this, ex.Message);}}};// Set it as Active so UI input will go to itautomation.Active = true;base.OnLoad(e);}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
