ListBox a Mükerrer Kayıt Girişini Engellemek
Merhaba arkadaşlar bu makalemizde listBox nesnesine mükerrer (duplicate) kayıt girişini engeleyen basit bir uygulama yapacağız. Bu örnekte textBox a girilen isim listbox kayıtlarında mevcut olup olmadığı kontrol edilecek, eğer textBox a girilen isim listBox ta kayıtlı ise ekrana uyarı mesajı yazdıracağız. Eğer isim kayıtlı değilse listBox nesnesine girilen isimi ekleyeceğiz.
Şekil 1
Form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Globalization;
using System.Linq;
using System.Reflection.Emit;
using System.Text;
using System.Threading.Tasks;
using System.Web.UI.WebControls;
using System.Windows.Forms;
using static System.Windows.Forms.VisualStyles.VisualStyleElement;
namespace listbox_duplicate
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnAdd_Click(object sender, EventArgs e)
{
// I capitalize the first letter of the text entered into the TextBox
// TextBox a girilen metinin ilk harfini buyuk yapiyoruz
string name = CultureInfo.CurrentCulture.TextInfo.ToTitleCase(textBox1.Text);
if (listBox1.Items.Contains(name))
{
MessageBox.Show("This name already exists!" + ((char)13) + ((char)10) + "Bu isim zaten listede var!");
}
else
{
listBox1.Items.Add(name);
textBox1.Text = "";
}
}
}
}
Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN