views:

1593

answers:

3

Is there a way to add a button control to a cell in inside a ListView in a WinForms app?

A: 

Maybe this could be of interest?

http://www.codeproject.com/KB/list/extendedlistviews.aspx

danbystrom
A: 

The ListView itself (or ListViewItem) does not function as a container of any kind so no way to add controls directly, however it is doable. I have used this extended ListView with a lot of success: Embedding Controls in a ListView.

Ryan Farley
A: 

No, a standard Windows Forms ListView doesn't support embedded controls. You could try to build your own custom control, or you could use something like http://www.codeproject.com/KB/list/EXListView.aspx.

wb947