Exemplo n.º 1
0
        private async void BtnAddList_Click(object sender, RoutedEventArgs e)
        {
            string name = await InputTextDialogAsync("재생목록 추가");

            if (name != "")
            {
                playListViewModel.AddPlayList(name);
                lvPlayList.ItemsSource    = playListViewModel.playList.PlayList;
                cbPlayLists.SelectedIndex = playListViewModel.CurrentIdx;
            }
        }