コード例 #1
0
ファイル: SongPoster.cs プロジェクト: hueney/plugin-radiodj
        ///<summary>
        ///Show our "Main" screen? When is this fired? Is double-clicking the plugin list and clicking the config button different?
        ///</summary>
        public void ShowMain()
        {
            SongPoster_Config configWindow = new SongPoster_Config(this);

            configWindow.SetCheckBoxEnable(Enabled);
            configWindow.SetChekBoxSendCoverArt(SendCoverArt);
            configWindow.Show();
        }
コード例 #2
0
 ///<summary>
 ///Show our "Main" screen? When is this fired? Is double-clicking the plugin list and clicking the config button different?
 ///</summary>
 public void ShowMain()
 {
     SongPoster_Config configWindow = new SongPoster_Config(this);
     configWindow.setCheckBoxEnable(Enabled);
     configWindow.Show();
 }