Exemplo n.º 1
0
        private void btnAddSong_Click(object sender, EventArgs e)
        {
            AddSongUI addSong = new AddSongUI(this);

            addSong.StartPosition = FormStartPosition.CenterParent;
            addSong.Show();
        }
Exemplo n.º 2
0
        private void btnEditSong_Click(object sender, EventArgs e)
        {
            Song      songToEdit = FindSongFromSelectedDgvRow();
            AddSongUI editSong   = new AddSongUI(this, songToEdit);

            editSong.StartPosition = FormStartPosition.CenterParent;
            editSong.Show();
        }