c# Listbox – change color of items
Filed in C#, Code Snippets on Oct.12, 2009
Again old theme but seems still people want this. Here is the code for doing this:
private void Form1_Load(object sender, EventArgs e)
{
listBox1.DataSource = new
string[] { "asdfljk", "sdfgsdfg", "xcv", "wrwerwer" };
[...]












