如何在ListBox中包含图标?

时间:2011-11-30 21:37:29

标签: c# .net winforms c#-4.0

我知道之前已经在这里提出了类似的问题,但它们都导致same codeproject article不起作用。有人知道带有图标的工作ListBox吗?

4 个答案:

答案 0 :(得分:3)

ListView会对你有用吗?这就是我使用的。更容易,你可以看起来像ListBox。此外,有关MSDN的大量文档可以开始使用。

  

如何:显示Windows窗体ListView控件的图标
  Windows窗体ListView控件可以显示三个图像的图标   名单。 List,Details和SmallIcon视图显示来自的图像   SmallImageList属性中指定的图像列表。 LargeIcon   视图显示图像中指定的图像列表中的图像   LargeImageList属性。列表视图还可以显示其他内容   一组图标,设置在StateImageList属性中,旁边是大或   小图标。有关图像列表的详细信息,请参阅ImageList   组件(Windows窗体)和如何:添加或删除图像   Windows窗体ImageList组件。

How to: Display Icons for the Windows Forms ListView Control

插入

答案 1 :(得分:1)

如果您在WinForms中工作,那么您必须拥有自己的项目。

请参阅DrawItem event的示例。

答案 2 :(得分:1)

一种不同的方法 - 不要使用列表框。 我没有使用那种限制我有限的属性和方法的控件,而是制作了我自己的列表框。

它并不像听起来那么难:

int yPos = 0;    
Panel myListBox = new Panel();
foreach (Object object in YourObjectList)
{
    Panel line = new Panel();
    line.Location = new Point(0, Ypos);
    line.Size = new Size(myListBox.Width, 20);
    line.MouseClick += new MouseEventHandler(line_MouseClick);
    myListBox.Controls.Add(line);

    // Add and arrange the controls you want in the line

    yPos += line.Height;
}

myListBox事件处理程序示例 - 选择一行:

private void line_MouseClick(object sender, MouseEventArgs)
{
    foreach (Control control in myListBox.Controls)
        if (control is Panel)
            if (control == sender)
                control.BackColor = Color.DarkBlue;
            else
                control.BackColor = Color.Transparent;      
}

上面的代码示例未经过测试,但使用了所描述的方法,发现非常方便和简单。

答案 3 :(得分:1)

如果您不想将ListBox更改为ListView,则可以为DrawItemEvent编写处理程序。例如:

private void InitializeComponent()
{
    ...
    this.listBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.listBox_DrawItem);
    ...
 }
private void listBox_DrawItem(object sender, DrawItemEventArgs e)
    {
        if (e.Index == -1)
            return;
        // Draw the background of the ListBox control for each item.
        e.DrawBackground();
        var rect = new Rectangle(e.Bounds.X+10, e.Bounds.Y+8, 12, 14);
       //assuming the icon is already added to project resources
        e.Graphics.DrawIconUnstretched(YourProject.Properties.Resources.YouIcon, rect);
        e.Graphics.DrawString(((ListBox)sender).Items[e.Index].ToString(),
            e.Font, Brushes.Black, new Rectangle(e.Bounds.X + 25, e.Bounds.Y + 10, e.Bounds.Width, e.Bounds.Height), StringFormat.GenericDefault);
        // If the ListBox has focus, draw a focus rectangle around the selected item.
        e.DrawFocusRectangle();
    }

您可以使用矩形来设置右侧图标的位置