Add and Remove Image Viewer Items - WPF C# .NET 6

This tutorial shows how to create a WPF C# application to work with ImageViewer items using the LEADTOOLS SDK.

Overview  
Summary This tutorial covers how to add ImageViewer items in a C# Windows WPF Application.
Completion Time 30 minutes
Visual Studio Project Download tutorial project (4 KB)
Platform C# Windows WPF Application
IDE Visual Studio 2022
Development License Download LEADTOOLS
Try it in another language

Required Knowledge

Get familiar with the basic steps of creating a project by reviewing the Add References and Set a License and Display Images in an Image Viewer tutorials, before working on the Add and Remove Image Viewer Items - WPF C# tutorial.

Saving images is not necessary for this tutorial, so the saving functionality can be commented out.

Create the Project and Add the LEADTOOLS References

Start with a copy of the project created in the Display Images in an Image Viewer tutorial. If you don't have that project, follow the steps in that tutorial to create it.

The references needed depend upon the purpose of the project. References can be added by one or the other of the following two methods (but not both).

If NuGet references are used, this tutorial requires the following NuGet packages:

If local DLL references are used, the following DLLs are needed. The DLLs are located at <INSTALL_DIR>\LEADTOOLS23\Bin\Dotnet4\x64:

For a complete list of which Codec DLLs are required for specific formats, refer to File Format Support.

Set the License File

The License unlocks the features needed for the project. It must be set before any toolkit function is called. For details, including tutorials for different platforms, refer to [Setting a Runtime License.

There are two types of runtime licenses:

Note

Adding LEADTOOLS NuGet and local references and setting a license are covered in more detail in the Add References and Set a License tutorial.

Edit the InitViewer Method and _fileOpen_Click Event Handler

With the project created, the references added, the license set, and the load image code added, coding can begin.

In Solution Explorer, open the MainWindow.xaml file. Add the following XAML code inside the _mainMenu Menu tag just under the _file Menu Item.

<MenuItem Name="_Items" Header="Items"> 
    <MenuItem Name="_addItem" Header="Add Item" InputGestureText="Ctrl+A" Click="_addItem_Click"/> 
    <MenuItem Name="_removeItem" Header="Remove Item" InputGestureText="Ctrl+R" Click="_removeItem_Click"/> 
</MenuItem> 
Adding new Image Viewer Menu items

After the above XAML code is added, open MainWindow.xaml.cs in the Solution Explorer. Inside the InitViewer() method add the following line of code, below ViewVerticalAlignment = ControlAlignment.Center,.

C#
ViewLayout = new ImageViewerVerticalViewLayout { Columns = 1 }, 

Open MainWindow.xaml.cs in the Solution Explorer. In the Program class remove the following code from the _fileOpen_Click event.

C#
imageViewer.Image = codecs.Load(dlg.FileName); 

Now add the below lines of code where the above line of code was removed.

C#
ImageViewerItem item = new ImageViewerItem(); 
item.Image = codecs.Load(dlg.FileName); 
imageViewer.Items.Add(item); 

Add the Add Item Code

In the Program class add the following code to the _addItem_Click event handler to add a new ImageViewerItem.

C#
private void _addItem_Click(object sender, RoutedEventArgs e) 
{ 
    try 
    { 
        LeadSize _imageSize = LeadSize.Create(130, 130); 
        imageViewer.BeginUpdate(); 
 
        OpenFileDialog dlg = new OpenFileDialog(); 
        dlg.InitialDirectory = @"C:\LEADTOOLS23\Resources\Images"; 
        if (dlg.ShowDialog() == true) 
        { 
            using (RasterImage image = codecs.Load(dlg.FileName, 1)) 
            { 
                LeadRect destRect = LeadRect.Create(0, 0, _imageSize.Width, _imageSize.Height); 
                LeadRect imageRect = ImageViewer.GetDestinationRectangle( 
                    image.ImageWidth, 
                    image.ImageHeight, 
                    destRect, 
                    ControlSizeMode.Fit, 
                    ControlAlignment.Near, 
                    ControlAlignment.Near); 
 
                RasterImage thumbnail = image.CreateThumbnail( 
                    imageRect.Width, 
                    imageRect.Height, 
                    32, 
                    RasterViewPerspective.TopLeft, 
                    RasterSizeFlags.Resample); 
 
                ImageViewerItem item = new ImageViewerItem(); 
                item.Image = thumbnail; 
                imageViewer.Items.Add(item); 
            } 
        } 
        imageViewer.EndUpdate(); 
    } 
    catch (Exception ex) 
    { 
        MessageBox.Show(ex.ToString()); 
    } 
} 

The RasterImage class implements IDisposable, so you can add a using statement for proper disposal.

Add the Remove Item Code

In the Program class add the following code to the _removeItem_Click event handler to remove the current ImageViewerItem.

C#
private void _removeItem_Click(object sender, RoutedEventArgs e) 
{ 
    if (imageViewer.Items.Count >= 1) 
        imageViewer.Items.RemoveAt(0); 
    else 
        MessageBox.Show("Add ImageViewer Items to test removing items."); 
} 

Run the Project

Run the project by pressing F5, or by selecting Debug -> Start Debugging.

If the steps were followed correctly, the application will run. To test, follow the steps below:

  1. Click on File -> Open to bring up the OpenFileDialog.

  2. Select an image to be loaded into the ImageViewer.

  3. Click Items -> Add Item to bring up the OpenFileDialog again and select another image to add that image as a thumbnail to the ImageViewer below the first image.

    Adding a new Image Viewer item
  4. Select Items -> Remove Item to remove the ImageViewerItem at index[0] (The first RasterImage).

Wrap-up

This tutorial showed how to add and remove Image Viewer items from the ImageViewer. Also it covered how to use the ImageViewer and ImageViewerItem classes.

See Also

Help Version 23.0.2024.4.23
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.


Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.