vote up 0 vote down star
1

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

flag

52% accept rate

3 Answers

vote up 0 vote down

No, there isn't. ListView cannot act as a control container. You can fake one by implementing the DrawItem and MouseDown events, but it is a fairly large amount of work and won't act much like a regular button. Consider using DataGridView instead, it can host controls.

link|flag
vote up 0 vote down

Maybe this could be of interest?

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

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.