在Visual C#Express Edition中,是否可以将ListBox中的某些(但不是全部)项目设为粗体?我在API中找不到任何类型的选项。

最佳答案

您需要将列表框的DrawMode更改为DrawMode.OwnerDrawFixed。在msdn上查看以下文章:
DrawMode Enumeration
ListBox.DrawItem Event
Graphics.DrawString Method

还可以在msdn论坛上查看此问题:
Question on ListBox items

一个简单的示例(两项-Black-Arial-10-Bold):

 public partial class Form1 : Form
 {
    public Form1()
    {
        InitializeComponent();

        ListBox1.Items.AddRange(new Object[] { "First Item", "Second Item"});
        ListBox1.DrawMode = DrawMode.OwnerDrawFixed;
    }

    private void ListBox1_DrawItem(object sender, DrawItemEventArgs e)
    {
        e.DrawBackground();
        e.Graphics.DrawString(ListBox1.Items[e.Index].ToString(), new Font("Arial", 10, FontStyle.Bold), Brushes.Black, e.Bounds);
        e.DrawFocusRectangle();
    }
 }

08-08 06:08