Example #1
0
        private void btnLoadFileAdmin_Click(object sender, RoutedEventArgs e)
        {
            OpenFileDialog  openFileDialog = new OpenFileDialog();
            MusicOperations mo             = new MusicOperations();

            MessageBox.Show("File should be in example format: 'Slayer - Repentless.mp3'\nPress 'Reset' after load music");
            if (openFileDialog.ShowDialog() == true)
            {
                mo.LoadFileAdmin(openFileDialog.FileName);
                MessageBox.Show("Music loaded!");
            }
        }