Working with Automated Annotations in Windows Forms

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.

  1. Start Visual Studio .NET.
  2. Choose File->New->Project? from the menu.
  3. In the New Project dialog box, choose "Visual C#" and "Windows Forms Application" as the project template.
  4. Type the project name as "WinForms Automation" in the Project Name field, and then choose OK. If desired, type a new location for your project or select a directory using the Browse button, and then choose OK.
  5. 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:

    • Leadtools.dll
    • Leadtools.Codecs.dll
    • Leadtools.Drawing.dll
    • Leadtools.WinForms.dll
    • Leadtools.Codecs.Bmp.dll
    • Leadtools.Codecs.Fax.dll
    • Leadtools.Codecs.Tif.dll
    • Leadtools.Codecs.Cmp.dll
    • Leadtools.Codecs.Png.dll
    • Leadtools.Annotations.Core.dll
    • Leadtools.Annotations.Designers.dll
    • Leadtools.Annotations.Rendering.dll
    • Leadtools.Annotations.Automation.dll
    • Leadtools.Annotations.WinForms.dll

    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.

  6. If you are using .NET 4, then this application will required switching the Target framework to full .NET Framework 4.

  7. Switch to code view of the main form and add the following declarations at the top:

    C#
    using Leadtools; 
    using Leadtools.WinForms; 
    using Leadtools.Codecs; 
    using Leadtools.Annotations.Core; 
    using Leadtools.Annotations.Designers; 
    using Leadtools.Annotations.Rendering; 
    using Leadtools.Annotations.Automation; 
    using Leadtools.Annotations.WinForms; 
                      
         

  8. Add the following private members to Form1:

    C#
    // Annotations-aware RasterImageViewer 
    private AnnAutomationRasterImageViewer _imageViewer; 
    // Annotations automation manager with WinForms functionality 
    private AnnAutomationManagerHelper _annotations; 
                      
         

  9. Add the following code to in Form1 Load event. This will create a minimum automation application:

    C#
    protected override void OnLoad(EventArgs e) 
    { 
       if (!DesignMode) 
       { 
          // Create the viewer and add it to the form 
          _imageViewer = new AnnAutomationRasterImageViewer(); 
          _imageViewer.Dock = DockStyle.Fill; 
          Controls.Add(_imageViewer); 
                     
          // Create the annotations 
          AnnAutomationManager automationManager = new AnnAutomationManager(); 
          automationManager.CreateDefaultObjects(); 
                     
          // Create the helper 
          _annotations = new AnnAutomationManagerHelper(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 viewer 
          using (RasterCodecs codecs = new RasterCodecs()) 
             _imageViewer.Image = codecs.Load(@"C:\Users\Public\Documents\LEADTOOLS Images\sample1.cmp"); 
                     
          // Create an automation object for it 
          AnnAutomation automation = new AnnAutomation(automationManager, _imageViewer); 
          automationManager.Automations.Add(automation); 
                     
          // Add the events to show the object context menu and object properties form 
                     
          automation.OnShowContextMenu += delegate(object sender, AnnAutomationEventArgs showContextMenuEventArgs) 
          { 
             if (showContextMenuEventArgs != null && showContextMenuEventArgs.Object != null) 
             { 
                AnnAutomationObjectExtData data = showContextMenuEventArgs.Object.UserData as AnnAutomationObjectExtData; 
                if (data != null && data.ContextMenu != null) 
                { 
                   ObjectContextMenu menu = data.ContextMenu as ObjectContextMenu; 
                   if (menu != null) 
                   { 
                      menu.Automation = sender as AnnAutomation; 
                      data.ContextMenu.Show(this, _imageViewer.PointToClient(Cursor.Position)); 
                   } 
                } 
             } 
          }; 
                     
          automation.OnShowObjectProperties += delegate(object sender, EventArgs showObjectPropertiesEventArgs) 
          { 
             // Show the object properties form 
             using (ObjectPropertiesForm form = new ObjectPropertiesForm(automation)) 
             { 
                try 
                { 
                   form.ShowDialog(this); 
                } 
                catch (Exception ex) 
                { 
                   MessageBox.Show(this, ex.Message); 
                } 
             } 
          }; 
                     
          // Set it as Active so UI input will go to it 
          automation.Active = true; 
       } 
                      
       base.OnLoad(e); 
    } 
                      
         

  10. Build and run the demo. You should be able to annotate the image, right click on any object to show the context menu, select properties to change any object properties.
Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS Imaging, Medical, and Document