예제 #1
0
        private void PlugIn_Closing(object sender, System.ComponentModel.CancelEventArgs e)
        {
            // unload all loaded add-ons...
            Bass.BASS_PluginFree(0);
            // close bass
            Bass.BASS_Stop();
            Bass.BASS_Free();

            BassNet.ShowAbout(this);
        }
예제 #2
0
 /// <summary>
 /// This method is executed when the button is clicked.
 /// </summary>
 /// <param name="parameter">I don't know what it is...</param>
 public void Execute(object parameter)
 {
     BassNet.ShowAbout(null);
 }
예제 #3
0
 public static void ShowAbout()
 {
     BassNet.ShowAbout(null);
 }
예제 #4
0
 private void btnAbout_Click(object sender, EventArgs e)
 {
     BassNet.ShowAbout(new System.Windows.Forms.Form());
 }