Is there a way to add a button control to a cell in inside a ListView in a WinForms app?
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
2009-03-09 23:46:20
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
2010-07-30 22:34:43