星期二, 8月 12, 2014

[C#] ListBox 內新增 Item

論壇問題
TextBox 比對 ListBox,TextBox 字串去比對 ListBox 是否有這筆資料,如果沒有就加入到 ListBox 內
namespace ListBoxAdd
{
    public partial class ListBoxAdd : Form
    {
        public ListBoxAdd()
        {
            InitializeComponent();
        }

        private void btnAdd_Click(object sender, EventArgs e)
        {
            // 利用 indexof 來判斷使用者輸入是否存在於 ListBox 內
            string inputValue = txtInput.Text;
            if (lstResult.Items.IndexOf(inputValue) != -1) return;
            lstResult.Items.Add(inputValue);
            txtInput.Text = "";
        }
    }
}
[C#] ListBox 內新增 Item

沒有留言:

張貼留言