How to set Foreground Color in a ListBox single element?
- by user1038056
I'm doing a game. I have a list of users (nicks):
List<string> users;
This list is used to show to the users on a ListBox, call listaJogadores.
public delegate void actualizaPlayersCallback(List<string> users);
public void actualizaPlayers(List<string> users)
{
listaJogadores.BeginInvoke(new…