I am working on a form in C# that is used for displaying information, but I still need to allow some manipulation of the information. What I really want to do is remove the border from a combobox, this would allow me to display the information while also allowing the user to select other items in the set without having to display them all.
To be more specific I have a list of 4 or 5 email addresses, but I only want to display one at a time while allowing the user a way to easily select a different item. I have searched all over but can't find an easy way to modify the border of a combobox, and a border less combobox will fit my needs nicely.
I just started with C# so I'm still learning, maybe I am missing something. Seems like this should be a lot easier than it's turning out to be, hopefully somebody can help me out.
EDIT:
The form is using labels to display information, so having a combobox in the middle of it makes it look awful. Basically what I'm looking for is a Link that when clicked opens the default email program and fills in the address, but I want the drop-down button so an alternate address can be selected. I don't want to display a huge list of addresses if I don't have to, I just want to display one at a time. Like a combobox, but with no border.
I could probably just add a button that displays a list of the alternate addresses, but why reinvent the wheel if I can just remove the border from a combobox and have exactly what I'm looking for? Thanks