public TrophyForm(TrophyConfNode TrophyFile)
 {
     InitializeComponent();
     this.TrophyFile = TrophyFile;
     this.listBox1.CurrentGame = TrophyFile;
     this.listBox1.DataSource = TrophyFile.Trophies.Values.ToArray();
 }
 private void OpenGame(TrophyConfNode TrophyConf)
 {
     TrophyForm tf = new TrophyForm(TrophyConf);
     tf.Show();
 }