我正在为我的第一个大学项目构建一个单词搜索应用程序,我基本上有一个Windows表单应用程序,当用户将文本输入到"添加&#34时,它使用数组来填充列表框;领域。我还包含了将已添加项目移除到列表中的选项,但是想要创建一个问题框,询问用户是否要删除数组中的项目{0}。
我一直在试验一个小时左右,但在网上找不到任何解决我问题的方法。以下是适用部分的代码段...
//Clear the contents of the selected item
private void deleteBtn_Click(object sender, EventArgs e)
{
string findMyWord = findLst.Text;
if (MessageBox.Show(string.Format("You are trying to clear the contents of {0}, do you wish to proceed?", findMyWord, "Delete the items contents?", MessageBoxButtons.YesNo, MessageBoxIcon.Question)) == DialogResult.Yes)
{
findLst.Items.Remove(findLst.SelectedItem);
}
提前致谢。