Exemplo n.º 1
0
        private void lstArtists_DoubleClick(object sender, EventArgs e)
        {
            string lcKey;

            lcKey = Convert.ToString(lstArtists.SelectedItem);
            if (lcKey != null)
            {
                theArtistList.EditArtist(lcKey);
                UpdateDisplay();
            }
        }
Exemplo n.º 2
0
        private void lstArtists_DoubleClick(object sender, EventArgs e)
        {
            string lcKey;

            lcKey = Convert.ToString(lstArtists.SelectedItem);
            if (lcKey != null)
            {
                try
                {
                    _ArtistList.EditArtist(lcKey);
                } catch (Exception ex)
                {
                    MessageBox.Show(ex.Message);
                }
                UpdateDisplay();
            }
        }