Hi,

Please help me with this one as I'm completely puzzled.

I would like to create a little list in my Windows Form showing a list of custom colors with their 'friendly names'. Technically it can be anything (ListBox, ListView, Panel etc... whatever).

I simply want it to look something like this:


I would like to store data for this list in a simple TXT file in such form:

Blue,Blue
Red,Red
#F6A118,My favourite color
#004080,Another color

And of course I would like each element on such list to be clickable, so if I'd click 'My favourite color' it should return the color's HEX value (#F6A118).

Any suggestions? Where do I start? What do I need to achieve it?

thanks in advance.