ListBox ta Filtreleme
Bu makalede Combobox tan Listbox a kayıt ekleyeceğiz. Eklemek istediğimiz kayıt listbox ta bulunduğu zaman, uyarı mesajı verip mükerrer olacak kayıtı eklemeyecek.
Aşağıdaki şekilleri inceleyin.
Şekil 1
Şekil 2
Şekil 3
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace combobox
{
public partial class Form1 : Form
{
bool KayitVar = false;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (listBox1.Items.Count < 0)
{
listBox1.Items.Add(comboBox1.Items[comboBox1.SelectedIndex]);
}
else
{
for (int i = 0; i < listBox1.Items.Count; i++)
{
if (comboBox1.Items[comboBox1.SelectedIndex].ToString() == listBox1.Items[i].ToString())
{
KayitVar = true;
MessageBox.Show("Dikkat! " + comboBox1.Items[comboBox1.SelectedIndex] + " adlı kayıt listbox ta mevcut. Mükerrer kayıt olmaması için eklenmedi", "Dikkat");
}
}
if (!KayitVar)
{
listBox1.Items.Add(comboBox1.Items[comboBox1.SelectedIndex]);
}
else
KayitVar = false;
}
}
}
}
//Bir sonraki makalede buluşmak üzere. Bahadır