Hello there. 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 have the button right next to the content, thus being inside of the ListBox.
Like this:
- Content 1 | X
- Content 2 | X
- ...
- Content 5 | X
The problem is that I lack experience in .NET so I have no clue on how this would be possible with all the automated controls going on. I've googled it, but came up with no meaningful results.
Any hints, clues or snippets for achieving this are welcome! :)