我正在研究Windows窗体上的程序我有一个列表框,我正在验证数据我希望将正确的数据添加到列表框中,颜色为绿色,而无效数据添加了红色,我也希望从列表框中自动添加项目时向下滚动并感谢
代码:
try
{
validatedata;
listBox1.Items.Add("Successfully validated the data : "+validateddata);
}
catch()
{
listBox1.Items.Add("Failed to validate data: " +validateddata);
}
答案 0 :(得分:32)
假设WinForms,我会这样做:
首先创建一个类来包含要添加到列表框的项目。
public class MyListBoxItem {
public MyListBoxItem(Color c, string m) {
ItemColor = c;
Message = m;
}
public Color ItemColor { get; set; }
public string Message { get; set; }
}
使用以下代码将项目添加到列表框中:
listBox1.Items.Add(new MyListBoxItem(Colors.Green, "Validated data successfully"));
listBox1.Items.Add(new MyListBoxItem(Colors.Red, "Failed to validate data"));
在ListBox的属性中,将DrawMode设置为OwnerDrawFixed,并为DrawItem事件创建事件处理程序。这允许您按照自己的意愿绘制每个项目。
在DrawItem事件中:
private void listBox1_DrawItem(object sender, DrawItemEventArgs e)
{
MyListBoxItem item = listBox1.Items[e.Index] as MyListBoxItem; // Get the current item and cast it to MyListBoxItem
if (item != null)
{
e.Graphics.DrawString( // Draw the appropriate text in the ListBox
item.Message, // The message linked to the item
listBox1.Font, // Take the font from the listbox
new SolidBrush(item.ItemColor), // Set the color
0, // X pixel coordinate
e.Index * listBox1.ItemHeight // Y pixel coordinate. Multiply the index by the ItemHeight defined in the listbox.
);
}
else
{
// The item isn't a MyListBoxItem, do something about it
}
}
有一些限制 - 主要的一点是你需要编写自己的点击处理程序并重新绘制适当的项目以使它们显示为选中状态,因为Windows不会在OwnerDraw模式下执行此操作。但是,如果这只是为了记录您的应用程序中发生的事情,您可能不关心可选择的项目。
要滚动到最后一项,请尝试
listBox1.TopIndex = listBox1.Items.Count - 1;
答案 1 :(得分:1)
不是你的问题的答案,但你可能想看看ObjectListView。它是ListView而不是列表框,但它非常灵活且易于使用。它可以与单个列一起使用来表示您的数据
我用它来为每一行的状态着色
http://objectlistview.sourceforge.net/cs/index.html
这当然适用于WinForms。
答案 2 :(得分:0)
怎么样
MyLB is a listbox
Label ll = new Label();
ll.Width = MyLB.Width;
ll.Content = ss;
if(///<some condition>///)
ll.Background = Brushes.LightGreen;
else
ll.Background = Brushes.LightPink;
MyLB.Items.Add(ll);