I\'m writing an C# App (WinForm) with a ListBox having content added by the user. Now, I could have a ordinary button under the ListBox to remove items, but I would like to
So one could make a custom control but for my app it isn't really worth the trouble.
What I did was to create a DataGrid, made it resemble a ListView but with its own flare. I did this because the DataGrid already has a buttoncontrol built in to its cells.
Yes I know, kind of fugly "hack", but it works like a charm! :)
Props to Shay Erlichmen who led me into thinking outsite my ListBox. See what I did there? ;)