Click here to Skip to main content
15,891,762 members
Articles / Desktop Programming / Windows Forms

ImageListView

Rate me:
Please Sign up or sign in to vote.
4.93/5 (145 votes)
18 Feb 2010Apache10 min read 601.9K   29.4K   380  
A .NET ListView like control for displaying image files with asynchronously loaded thumbnails.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Manina.Windows.Forms;

namespace ImageListViewDemo
{
    public partial class ChooseColumns : Form
    {
        public ImageListView imageListView;

        public ChooseColumns()
        {
            InitializeComponent();
        }

        private void btnClose_Click(object sender, EventArgs e)
        {
            Close();
        }

        private void checkedListBox_ItemCheck(object sender, ItemCheckEventArgs e)
        {
            ImageListView.ImageListViewColumnHeader column = imageListView.Columns[e.Index];
            column.Visible = (e.NewValue == CheckState.Checked);
        }

        private void ChooseColumns_Load(object sender, EventArgs e)
        {
            foreach (ImageListView.ImageListViewColumnHeader column in imageListView.Columns)
            {
                checkedListBox.Items.Add(column.Text, column.Visible);
            }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Turkey Turkey
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions