예제 #1
0
 public BlockTableEditorForm(SpotifyController spotControl)
 {
     this.spotControl = spotControl;
     InitializeComponent();
 }
예제 #2
0
파일: MainForm.cs 프로젝트: bakatz/SpotMute
 private void MainForm_Load(object sender, EventArgs e)
 {
     spotControl = new SpotifyController(nowPlayingLabel, playMusicToolStripMenuItem);
     stopButton.Enabled = false;
     blacklistArtistButton.Enabled = false;
     blacklistSongButton.Enabled = false;
 }
예제 #3
0
 // our constructor has a controller reference so we can retreive information from the current audio session.
 public SpotifyInformation(SpotifyController controller)
 {
     this.controller = controller;
 }