Custom Windows Control - Multiple Item Property/Properties
I am working on a custom control which should allow the adding, editing, and removing of items similar to the way in which a listbox works.
To add an item programatically in a listbox you would use the following example:
Listbox1.Items.Add("Test")
I want the same functionality in my custom control. How would I go about this?