Click here to Skip to main content
15,881,281 members
Articles / Programming Languages / XML

ImageListPopup, a C# Class which Pops up a Window to Select an Image from an Image List

Rate me:
Please Sign up or sign in to vote.
4.83/5 (44 votes)
23 Feb 20032 min read 179.9K   1.3K   135   35
Have you ever wanted to display an image list which looks like the MSN Messenger emoticon chooser...

Sample Image - ImageListPopup.jpg

Introduction

The ImageListPopup is quite easy to use Class that inherits from System.Windows.Forms.Form and allows to show a popup displaying the content of a specified Image List. When you click over an image, an event is fired and you get the index of the clicked image in the imagelist.

Features

The ImageListPopup class supports:

  • Custom colors for the grid, background color and selection color
  • Adjustable horizontal and vertical spaces between images

Compatibility

This class is stand alone and doesn't need any particular libraries except .NET default ones. It runs in managed code and hence should be portable.

How to Use the Class

  • First of all, copy ImageListPopup.cs in your project directory.
  • Add on the top of your source code, the directive using CustomUIControls;
  • Add a member variable in your class:
    C#
    ImageListPopup imageListPopup;
  • In your constructor, add the following lines:
    C#
    imageListPopup = new ImageListPopup();
    
    // facultative properties
    imageListPopup.BackgroundColor = Color.FromArgb(241,241,241);
    imageListPopup.BackgroundOverColor = Color.FromArgb(102,154,204);
    imageListPopup.HLinesColor = Color.FromArgb(182,189,210);
    imageListPopup.VLinesColor = Color.FromArgb(182,189,210);
    imageListPopup.BorderColor = Color.FromArgb(0,0,0);
    imageListPopup.EnableDragDrop = true;
    
    imageListPopup.Init(imageList,8,8,5,4);
    imageListPopup.ItemClick += new ImageListPopupEventHandler(OnItemClicked);

Details

C#
imageListPopup.BackgroundColor = Color.FromArgb(241,241,241);
imageListPopup.BackgroundOverColor = Color.FromArgb(102,154,204);
imageListPopup.HLinesColor = Color.FromArgb(182,189,210);
imageListPopup.VLinesColor = Color.FromArgb(182,189,210);
imageListPopup.BorderColor = Color.FromArgb(0,0,0);

These properties allow us to customize the different colors of the ImageList Popup (see the picture below for details):

Sample popup

The properties must be set before calling Init(), otherwise they won't be taken into account.

C#
imageListPopup.EnableDragDrop = true;

This property allows to Enable Drag'n'Drop support (default is false). You can drag a bitmap from the popup to any Drop target. A Bitmap object and a string containing the Id of the dropped image in the imagelist are available to the target.

C#
imageListPopup.Init(imageList,8,8,5,4);

This line sets the image list, the horizontal and vertical pixel spaces between 2 images, and the rows and columns number (must be present).

C#
imageListPopup.ItemClick += new ImageListPopupEventHandler(OnItemClicked);

This is the Event that is fired when an image is selected. The delegate should look like this:

C#
private void OnItemClicked(object sender, ImageListPopupEventArgs e)
{
 label1.Text = "Selected Image: " + e.SelectedItem;
}

When you want to show the ImageListPopup, you just have to call:

C#
imageListPopup.Show(x,y);

Technical Issues

When Init is called, a pre-calculated bitmap is generated with all the static drawing (the background Color, the grid, and all the images).

C#
public bool Init(ImageList imageList, int nHSpace, int nVSpace,
                 int nColumns, int nRows)
{
    _imageList = imageList;
    _nColumns = nColumns;
    _nRows = nRows;
    _nHSpace = nHSpace;
    _nVSpace = nVSpace;
    _nItemWidth = _imageList.ImageSize.Width + nHSpace;
    _nItemHeight = _imageList.ImageSize.Height + nVSpace;
    _nBitmapWidth = _nColumns * _nItemWidth + 1;
    _nBitmapHeight = _nRows * _nItemHeight + 1;
    this.Width = _nBitmapWidth;
    this.Height = _nBitmapHeight;


    _Bitmap = new Bitmap(_nBitmapWidth,_nBitmapHeight);
    Graphics grfx = Graphics.FromImage(_Bitmap);
    grfx.FillRectangle(new SolidBrush(BackgroundColor), 0, 0,
                                      _nBitmapWidth, _nBitmapHeight);
    for (int i=0;i<_nColumns;i++)
        grfx.DrawLine(new Pen(VLinesColor), i*_nItemWidth, 0,
                              i*_nItemWidth, _nBitmapHeight-1);
    for (int i=0;i<_nRows;i++)
        grfx.DrawLine(new Pen(HLinesColor), 0, 
                        i*_nItemHeight, _nBitmapWidth-1, i*_nItemHeight);
    
    grfx.DrawRectangle(new Pen(BorderColor), 0 ,0 , 
                               _nBitmapWidth-1, _nBitmapHeight-1);

    for (int i=0;i<_nColumns;i++)
        for (int j=0;j<_nRows ;j++)
            if ((j*_nColumns+i) < imageList.Images.Count)
                imageList.Draw(grfx,
                        i*_nItemWidth+_nHSpace/2,
                        j*_nItemHeight+nVSpace/2,
                        imageList.ImageSize.Width,
                        imageList.ImageSize.Height,
                        j*_nColumns+i);

    return true;
}

In the PaintBackground method, we blit the previously generated bitmap onto a hidden bitmap, then we draw the selection rectangle, and finally we blit everything to the screen with a basic double buffering technique.

C#
protected override void OnPaintBackground(PaintEventArgs pea)
{
    Graphics grfx = pea.Graphics;
    grfx.PageUnit = GraphicsUnit.Pixel;
    
    // Basic double buffering technique
    Bitmap offscreenBitmap = new Bitmap(_nBitmapWidth, _nBitmapHeight);
    Graphics offscreenGrfx = Graphics.FromImage(offscreenBitmap);
    // We blit the precalculated bitmap on the offscreen Graphics
    offscreenGrfx.DrawImage(_Bitmap, 0, 0);

    if (_nCoordX!=-1 && _nCoordY!=-1 && 
       (_nCoordY*_nColumns+_nCoordX)<_imageList.Images.Count)
    {
        // We draw the selection rectangle
        offscreenGrfx.FillRectangle(new SolidBrush(BackgroundOverColor),
                                    _nCoordX*_nItemWidth + 1,
                                    _nCoordY*_nItemHeight + 1,
                                    _nItemWidth-1, _nItemHeight-1);
        if (_bIsMouseDown)
        {
            // Mouse Down aspect for the image
            _imageList.Draw(offscreenGrfx,
                _nCoordX*_nItemWidth + _nHSpace/2 + 1,
                _nCoordY*_nItemHeight + _nVSpace/2 + 1,
                _imageList.ImageSize.Width,
                _imageList.ImageSize.Height,
                _nCoordY*_nColumns + _nCoordX);
        }
        else
        {
            // Normal aspect for the image
            _imageList.Draw(offscreenGrfx,
                _nCoordX*_nItemWidth + _nHSpace/2,
                _nCoordY*_nItemHeight + _nVSpace/2,
                _imageList.ImageSize.Width,
                _imageList.ImageSize.Height,
                _nCoordY*_nColumns + _nCoordX);
        }
        // Border selection Rectangle
        offscreenGrfx.DrawRectangle(new Pen(BorderColor),
                                    _nCoordX*_nItemWidth, 
                                    _nCoordY*_nItemHeight,
                                    _nItemWidth, _nItemHeight);
    }

    // We blit the offscreen image on the screen
    grfx.DrawImage(offscreenBitmap, 0, 0);
}

Conclusion

I hope this code will be useful to you. If you have suggestions to enhance the functionalities of this class, please post a comment.

Updates

  • 24/02/2003: Initial release
  • 25/02/2003: Added Keyboard support, added Drag'n'Drop support (disabled by default) - the selected Image and its Id are available to the drop target

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below.

A list of licenses authors might use can be found here.


Written By
Web Developer
United States United States
I live in Santa Clara CA and work as a software engineer for SAP Business Objects.

My areas of expertise are user interface developments in Eclipse RCP / SWT / Draw 2D and C#

Comments and Discussions

 
QuestionSelecting multiple images? Pin
lorecaster14-Jan-13 22:49
lorecaster14-Jan-13 22:49 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey21-Feb-12 0:19
professionalManoj Kumar Choubey21-Feb-12 0:19 
QuestionAnyone have this working under 2008? Pin
littleGreenDude30-Dec-10 9:07
littleGreenDude30-Dec-10 9:07 
AnswerRe: Anyone have this working under 2008? Pin
littleGreenDude3-Jan-11 8:26
littleGreenDude3-Jan-11 8:26 
GeneralMy vote of 4 Pin
Toli Cuturicu14-Aug-10 5:45
Toli Cuturicu14-Aug-10 5:45 
QuestionLicense Pin
claudiogmi9-Jun-10 7:40
claudiogmi9-Jun-10 7:40 
GeneralScroll Bars Pin
Member 434709222-Sep-08 23:40
Member 434709222-Sep-08 23:40 
GeneralShowDialog problem Pin
Alwik7-Dec-06 22:22
Alwik7-Dec-06 22:22 
GeneralLicense on source code and icons Pin
maihuaz30-Nov-06 13:24
maihuaz30-Nov-06 13:24 
QuestionCould Embedded and chip lavel programming Possible in C#? Pin
rup_rj24-Sep-06 8:30
rup_rj24-Sep-06 8:30 
GeneralNIce control Pin
dotnetfireball16-Mar-06 12:00
dotnetfireball16-Mar-06 12:00 
GeneralDemo project is not downloading Pin
Member 192988118-Aug-05 5:35
Member 192988118-Aug-05 5:35 
GeneralRe: Demo project is not downloading Pin
John O'Byrne18-Aug-05 5:49
John O'Byrne18-Aug-05 5:49 
Questionanimated gif support? Pin
Huisheng Chen4-Jul-05 16:46
Huisheng Chen4-Jul-05 16:46 
GeneralToolTip Pin
Armoghan Asif8-Oct-03 22:07
Armoghan Asif8-Oct-03 22:07 
GeneralYou forgot to release Graphics resource !! Pin
Jusin6-Apr-03 15:14
Jusin6-Apr-03 15:14 
GeneralRe: You forgot to release Graphics resource !! Pin
John O'Byrne7-Apr-03 6:41
John O'Byrne7-Apr-03 6:41 
GeneralRe: You forgot to release Graphics resource !! Pin
Jusin7-Apr-03 14:51
Jusin7-Apr-03 14:51 
GeneralRe: You forgot to release Graphics resource !! Pin
TimDet5-May-04 13:56
TimDet5-May-04 13:56 
QuestionHow could i add those images to a richtextbox? Pin
Acme31-Mar-03 3:48
Acme31-Mar-03 3:48 
AnswerRe: How could i add those images to a richtextbox? Pin
John O'Byrne31-Mar-03 4:33
John O'Byrne31-Mar-03 4:33 
GeneralOne word Pin
Anonymous5-Mar-03 6:39
Anonymous5-Mar-03 6:39 
GeneralGreat job. Pin
Ryan Farley4-Mar-03 5:43
Ryan Farley4-Mar-03 5:43 
GeneralRe: Great job. Pin
John O'Byrne4-Mar-03 10:31
John O'Byrne4-Mar-03 10:31 
GeneralSlick Pin
Chopper25-Feb-03 0:15
Chopper25-Feb-03 0:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.