我需要幫助改變列表框中特定項目的顏色。更改列表框顏色如果
我的代碼:
namespace WindowsFormsApplication6
{
public partial class Form2 : Form
{
List<string> lst;
public Form2()
{
InitializeComponent();
dateTimePicker1.Format = DateTimePickerFormat.Custom;
dateTimePicker1.CustomFormat = "dd/MM/yyyy HH:mm";
lst = new List<string>();
}
private void BindList()
{
lst = (lst.OrderByDescending(s => s.Substring(s.LastIndexOf(" "), s.Length - s.LastIndexOf(" ")))).ToList();
listBox1.DataSource = lst;
}
private void button1_Click(object sender, EventArgs e)
{
string s = textBox1.Text + ", " + Convert.ToDateTime(this.dateTimePicker1.Value).ToString("dd/mm/yyyy HH:mm");
lst.Add(s);
BindList();
}
private void button2_Click(object sender, EventArgs e)
{
lst.Remove(listBox1.SelectedItem.ToString());
BindList();
}
private void dateTimePicker1_ValueChanged(object sender, EventArgs e)
{
dateTimePicker1.CustomFormat = "dd/MM/yyyy HH:mm";
}
}
}
我從DateTimePicker1添加從TextBox1的文本和時間和日期listBox1中。
如果當前時間少於1小時,我需要列表框中的項目變成紅色。
我試過到目前爲止:
DateTime current = System.DateTime.Now.AddHours(+1);
DateTime deadline = Convert.ToDateTime(dateTimePicker1.Value);
do
{
// missing this part
}
while (current <= deadline);
如果你能完成這個還是有不同的解決方案,這將是巨大的。
謝謝!
請參閱[ListBox.DrawItem事件](http://msdn.microsoft.com/en-us/library/system.windows.forms.listbox.drawitem(v = vs.110).aspx) – LarsTech