通过button按钮删除comboBox中与TextBox输入匹配的项,C#代码怎么实现?
3个回答
展开全部
下面是代码,另有附件
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace ComboBoxDemo2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
comboBox1.Items.Add("abc");
comboBox1.Items.Add("bde");
comboBox1.Items.Add("adf");
comboBox1.Items.Add("bbb");
comboBox1.Items.Add("ccc");
comboBox1.SelectedIndex = 0;
}
private void button1_Click(object sender, EventArgs e)
{
//如果TextBox中的值不为空,则进行删除
if (!string.IsNullOrEmpty(textBox1.Text)) {
comboBox1.Items.Remove(textBox1.Text);
}
}
}
}
展开全部
在事件中获取textbox的输入内容,然后遍历combobox的所有item的value,value值相同的则使用combobox的items的remove方法删除。(好像是这个,记不太清楚了,你查一下,肯定有删除方法的)。
供参考
供参考
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在button的click事件中写。
string value = textBox1.Text.Trim();
if(value.Length > 0)
{
comboBox1.Items.Remove(value);
}
如果输入不为空,则从comboBox中移除这项,即可。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询