I just want my ComboBox to show me the
FullName of objects in List(Curator),
but it show me the same "object.FullName" multiple times :-(
-
Basically, it work cause it show me the FullName of ONE of the Curator,
and the good amount of times,
but it show me the same ONE !
public partial class SGIArt : Form
{
     public static Gallery gal = new Gallery(); // from a dll i made
     List<Curator> curList = new List<Curator>();
     public SGIArt()
     {
        InitializeComponent();
        comboCur.DataSource = curList;
        comboCur.ValueMember = null;
        comboCur.DisplayMember = "FullName";
        UpdateCurList();
    }
    public void UpdateCurList()
    {
        curList.Clear();
        foreach (Curator cur in gal.GetCurList())    
                  // from the same dll : Curators curatorsList = new Curators();
        {
            curList.Add(cur);
        }
    }
    private void comboCur_SelectedIndexChanged(object sender, EventArgs e)
    {
        if (comboCur.SelectedValue != null)
        {
            //show info in textBox (that work fine)
        }
    }
}
Curator class :
public class Curator : Person
{
    private int id;
    private double commission;
    const double commRate = 0.25;
    private int assignedArtists = 0;
    public int CuratorID
    {
        get
        {
            return id;
        }
        set
        {
            id = value;
        }
    }
    ...
    public Curator()
    {
    }
    public Curator(string First, string Last, int curID)
        : base(First, Last) // from : public abstract class Person
    {
        id = curID;
        commission = 0;
        assignedArtists = 0;
    }
 
     
     
    