C# Can I display images in a list box?

前端 未结 3 1169
再見小時候
再見小時候 2020-11-30 05:07

C# In a nut shell can I display images in a list box? I have a list of users and I want to display a green tick next to some of the names, is this possible?

Thanks<

3条回答
  •  我在风中等你
    2020-11-30 05:35

    In WPF it's quite simple, but if you're using winforms, you can't do it with the System.Windows.Forms.ListBox control. You can do it with the ListView control, or third party controls.

提交回复
热议问题