Question

I am experiencing some problems while setting ValueMember property of my ComboBox.

The line comboBox1.ValueMember = "Code"; breaks my code.

Here is my code:

Form1.cs:

private void Form1_Load(object sender, EventArgs e) {  
    ...  
    ...      
    MAPList MAP = new MAPList();  
    comboBox1.DataSource = MAP.All;  
    comboBox1.ValueMember = "Code";  
    ...  
    ...  
}

MAPList.cs:

public class MAPList {  
    public readonly List<MAP> All;

    public MAPList() {
        All = new List<MAP>();

        var MapData = // Getting map data

        foreach(MAP m in MapData) {
            All.Add(new Map(m.Name, m.Code));
        }
    }
}

MAP.cs:

public class MAP {  
    public readonly string Name;  
    public readonly string Code;

    public RadioCode(string name, string code) {
        Name = name;
        Code = code;
    }

    public override string ToString() {
        return String.Format("{0}: {1}", Name, Code);
    }
}
Was it helpful?

Solution

Try converting Code as a Property instead of a member and then binding it

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top