我想弄清楚,对于作业来说,一种显示消息的方法基本上说"组合框是空的"从C#中的组合框中删除所有项目后。作业很简单。我在C#中编写了一个Windows窗体,在ComboBox中填充了十五个状态,当我从该列表中选择一个项目时,它将被删除。我有它的工作,但一旦所有项目都消失它只是坐在那里,我必须手动退出。有人能指出我正确的方向让这个工作,我想也许如果陈述是有序的?到目前为止,这是我的代码......
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Chapter_15_Ex._15._3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
comboBox1.Items.Remove(comboBox1.SelectedItem);
}
private void btnExit_Click(object sender, EventArgs e)
{
Application.Exit();
}
}
}
谢谢
答案 0 :(得分:1)
删除一项后,检查剩余的项目数。您可以在Count
集合上Items
查看ComboBox
中剩余的项目数。
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
comboBox1.Items.Remove(comboBox1.SelectedItem);
if (comboBox1.Items.Count == 0)
MessageBox.Show("All Gone!");
}
答案 1 :(得分:1)
if (comboBox1.Items.Count == 0)
{
MessageBox.Show("Your combo is empty");
}
答案 2 :(得分:0)
您可以检查以下条件
if (comboBox1.Items.Count == 0)
{
MessageBox.Show("Empty");
}