“Windows Forms Link Listbox à tableau” Réponses codées

Windows Forms Link Listbox à tableau

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

Windows Forms Link Listbox à tableau

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 Link Listbox à tableau

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

Réponses similaires à “Windows Forms Link Listbox à tableau”

Questions similaires à “Windows Forms Link Listbox à tableau”

Plus de réponses similaires à “Windows Forms Link Listbox à tableau” dans C#

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code