예제 #1
0
 private void buttonUseInSetlist_Click(object sender, EventArgs e)
 {
     if (CollectSelectedItems())
     {
         SelectedAction = SongBrowseDialogAction.LoadInSetList;
         DialogResult   = DialogResult.OK;
         Close();
     }
 }
예제 #2
0
 private void buttonUseInEditor_Click(object sender, EventArgs e)
 {
     if (CollectSelectedItems())
     {
         SelectedAction = SongBrowseDialogAction.OpenInEditor;
         DialogResult   = DialogResult.OK;
         Close();
     }
 }