Ejemplo n.º 1
0
 private void Form1_Load(object sender, EventArgs e)
 {
     listBox1.BeginUpdate();
     theInformation = DoStuff.LoadXML();
     foreach (GameInfo tempInfo in theInformation)
     {
         NameList.Add(tempInfo.Name);
     }
     foreach (string tempName in NameList)
     {
         listBox1.Items.Add(tempName);
     }
     listBox1.EndUpdate();
 }