Hi, I've a listbox with name "List" and want to change the font color of all the items in this listbox to white.
I used to name each item like, L1, L2, L3, L4 and then write the code like
L1.Foreground = Brushes.white;, L2L1.Foreground = Brushes.white; , etc. .. a very bad code :D ,
any ideas for better shorter code works on any list without renaming items ?!