【发布时间】:2014-05-25 15:51:10
【问题描述】:
我需要帮助来更改列表框中特定项目的颜色。
我的代码:
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";
}
}
}
我将 TextBox1 中的文本以及 DateTimePicker1 中的时间和日期添加到 listBox1。
如果距离当前时间不到 1 小时,我需要列表框中的项目变为红色。
到目前为止我已经尝试过:
DateTime current = System.DateTime.Now.AddHours(+1);
DateTime deadline = Convert.ToDateTime(dateTimePicker1.Value);
do
{
// missing this part
}
while (current <= deadline);
如果你能完成这个或有不同的解决方案,那就太好了。
谢谢!
【问题讨论】:
标签: c# visual-studio datetime listbox