Exemplo n.º 1
0
        public MainWindow()
        {
            audioEngine = new AudioEngine();
            audioEngine.ImageLoad += AudioEngine_ImageLoad;
            audioEngine.TagLoad += AudioEngine_TagLoad;
            InitializeComponent();
            wndErrorConsole = new ErrorConsole();
            this.ConsoleWriter = new StringWriter();
            Console.SetOut(this.ConsoleWriter);
            Console.SetError(this.ConsoleWriter);

            this.btn_close.Visibility = Visibility.Visible;

            // sets up a timer which is needed for updating the trackbar.
            this.timer1 = new System.Windows.Forms.Timer();
            this.timer1.Enabled = true;
            this.timer1.Interval = 500;
            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);

            //wireup clock
            spectrumAnalyzer.Visibility = System.Windows.Visibility.Visible;
            clockDisplay.Visibility = System.Windows.Visibility.Visible;
            this.AudioEngine.Engine.PropertyChanged += AudioEngine_PropertyChanged;
            this.AudioEngine.TrackChange += AudioEngine_TrackChange;
            spectrumAnalyzer.RegisterSoundPlayer(AudioEngine.Engine);

            init = false;
        }
Exemplo n.º 2
0
 private void AudioEngine_TagLoad(AudioEngine sender, AudioEngine.TagData e)
 {
     tb_Artist.Text = e.artist;
     tb_Title.Text = e.title;
     tb_TrackAlbum.Text = e.trackalbum;
     tb_Year.Text = e.year;
 }
Exemplo n.º 3
0
 private void AudioEngine_ImageLoad(AudioEngine sender, AudioEngine.ImageData e)
 {
     imgAlbumArt.Source = e.Image;
 }
Exemplo n.º 4
0
 private void AudioEngine_TrackChange(AudioEngine sender, AudioEngine.TrackChangeData e)
 {
     Playlist.SelectedIndex = e.index;
 }