Customize listview

I might need to customize a listview form in my current project to be able to embed other controlers such as three-state CheckBox and multiple radiobuttons into the listview. I do not however have any experience customizing components in C# so I am kinda hoping for some advice\startup help.

Below is my starting point. What ListView methods do I need to run to just show the standard ListView wrapped inside my ListViewEx?

public class ListViewEx : System.Windows.Forms.ListView
{
public ListViewEx()
{
InitializeComponent();
}
}


Any hints\advice would be great.

I would appreciate any help.
[670 byte] By [laasunde] at [2007-11-19 11:27:12]
# 1 Re: Customize listview
Why reinventing the wheel? Have a look at
http://www.codeproject.com/cs/miscctrl/ListViewEmbeddedControls.asp.

gbr
gbr at 2007-11-9 1:50:12 >
# 2 Re: Customize listview
I might need to customize a listview form in my current project to be able to embed other controlers such as three-state CheckBox and multiple radiobuttons into the listview. I do not however have any experience customizing components in C# so I am kinda hoping for some advice\startup help.How about reading up on Custom Controls. By the way, you might get 3rd party components but u might need to look up for that. The link pointed out by gbr deals with such customizations. :thumb:
exterminator at 2007-11-9 1:51:12 >