Beispiel #1
0
        double snhl;                           // = .25;    //Horisontal Location multiplyer Song Numbers
        #endregion



        public MainForm()
        {
            InitializeComponent();

            // instantiate the delegate and register a method with the new instance.
            NewSongDel newSong = new NewSongDel(onNewSongStarted);

            sDB         = new SDBApplicationClass();
            sDB.OnPlay += newSong.Invoke;   //OnPlay event from MediaMonkey API

            Reader reader = new Reader();

            orqs = reader.ReadIni();

            //Get UI from Settings Form
            if (mi == null)
            {
                mi = new MediaInfoSettings();
            }
            ui = mi.ui;

            GetStarted();
        }
Beispiel #2
0
 public void ResetUI()
 {
     ui = mi.ui;
 }
Beispiel #3
0
 public void UpdateIU(UISettings externalUI)
 {
     ui = externalUI;
     GetStarted();
 }