Click here to Skip to main content
15,886,362 members
Articles / Desktop Programming / Windows Forms

Controls Library: Extended ListView with Column Mapping

Rate me:
Please Sign up or sign in to vote.
4.86/5 (29 votes)
27 Mar 2014CPOL5 min read 82.6K   7.6K   110  
Docking windows container, extended listview, extended property editor.
using System;
using dwf.tool;
using System.Collections.Generic;
using System.Drawing;

namespace dwf.gui
{
    public class DockMap : LayoutMap, IDisposable
    {
        public DockMap()
        {
            FillHeight = true;
        }

        public DockMapItem Add(DockPanel panel)
        {
            DockMapItem item = new DockMapItem();
            item.Name = panel.Name;
            item.Panel = panel;
            LayoutMapTool.Add(this, item);
            return item;
        }

        public RectangleF GetBound(int w, int h)
        {
            return LayoutMapTool.GetBound(this, new SizeF(w, h), null, null);
        }

        public RectangleF GetBound(DockMapItem item, int w, int h)
        {
            return LayoutMapTool.GetBound(this, item, new SizeF(w, h), null, null);
        }


        public void Dispose()
        {
            foreach (var item in items)
                if (item is IDisposable)
                    ((IDisposable)item).Dispose(); 
        }
    }


}

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 Code Project Open License (CPOL)


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

Comments and Discussions