예제 #1
0
 private void showHelp()
 {
     if (m_about == null)
         m_about = new FAboutBox();
     m_about.ShowDialog();
 }
예제 #2
0
 private void Form1_Load(object sender, EventArgs e)
 {
     m_about = new FAboutBox();
     m_options = new FOptions();
     if (m_options.RanksPerRound > 1)
         m_rankperrnd = m_options.RanksPerRound;
     m_playlistEditor = new FPlaylistEditor();
     m_soundEditor = new FSoundEditor();
     loadPlaylists();
     Form1_Resize(this, new EventArgs());
     resetCounter();
 }