“Ссылки Windows Forms Listbox на массив” Ответ

Ссылки Windows Forms Listbox на массив

List<string> listToBind = new List<string> { "AA", "BB", "CC" };
this.listBox1.DataSource = listToBind;
Long Tailed Spotted Cat

Ссылки Windows Forms Listbox на массив

public class MyClass
{
    public int Id { get; set; }
    public string Text { get; set; }
    public MyClass(int id, string text)
    {
        this.Id = id;
        this.Text = text;
    }
}
Long Tailed Spotted Cat

Ссылки Windows Forms Listbox на массив

List<MyClass> listToBind = new List<MyClass> { new MyClass(1, "One"), new MyClass(2, "Two") };
this.listBox1.DisplayMember = "Text";
this.listBox1.ValueMember = "Id"; // optional depending on your needs
this.listBox1.DataSource = listToBind;
Long Tailed Spotted Cat

Ответы похожие на “Ссылки Windows Forms Listbox на массив”

Вопросы похожие на “Ссылки Windows Forms Listbox на массив”

Больше похожих ответов на “Ссылки Windows Forms Listbox на массив” по C#

Смотреть популярные ответы по языку

Смотреть другие языки программирования