Exemple #1
0
 public JukeboxForm()
 {
     InitializeComponent();
     this.myStore       = new JukeboxStore("The Nuke Juke");
     this.frmBeatles    = new BeatlesFanForm(); // the window for Beatles fan
     this.frmPromo      = new PromoBoardForm(); // the window for promotions
     this.Text          = myStore.Name;
     myStore.AddedSong += frmBeatles.InformAboutBeatlesSong;
     AddTestData();
     lLOfPlayedSongs = new LLOfPlayedSongs();
 }