Beispiel #1
0
        private void DeleteListPrompt()
        {
            if (MessageBox.Show(this, "Are you sure you want to permanently delete this list?",
                                "Delete list", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning) == DialogResult.OK)
            {
                WinFormsHelper.DeleteList(listBoxList.GetItemText(listBoxList.SelectedItem));

                RefreshListBoxLists();
            }
        }