How can I change the colour of a specific column in a listview?
string[] row = { appID[i], "Launch Game"}; // more data to add
listView1.Items.Add(nameArray[i], i).SubItems.AddRange(row);
listView1.ForeColor = System.Drawing.Color.Blue;
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try something like this:
If you are using database to bind it you may have to do this during on item databind process. Let me know if that’s the case.