This seems pretty simple, and I'm not sure why its not working.
I have a button that when clicked adds an item to a list in the class:form.
public partial class Form1 : Form
{
List<string> photoNames = new List<string>();
private void button1_Click_1(object sender, EventArgs e)
{
//Hunce1947@superrito.com
photoNames.Add("Ree");
listBox1.DataSource = photoNames;
}
However, whenever you click the item only a single item shows up. Why are multiple instances of "Ree" not showing up?