Is there a way to add a button control to a cell in inside a ListView in a WinForms app?
|
|
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. |
||
|
|
|
|
Maybe this could be of interest? |
||
|
|
|
|
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. |
||
|
|
