示例#1
0
 public BlockTableEditorForm(SpotifyController spotControl)
 {
     this.spotControl = spotControl;
     InitializeComponent();
 }
示例#2
0
 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;
 }