ListBox ta Seçili İndekse Gitme
Bu örnekte TextBox a girilen integer değerin karşılığındaki ListBox taki indeks değerine giderek. Seçilmesini sağlayacağız.
Şekil 1
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
listBox1.Items.Add("Ali");
listBox1.Items.Add("Veli");
listBox1.Items.Add("Kırkdokuz");
listBox1.Items.Add("Elli");
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
if (Convert.ToInt32(textBox1.Text) > listBox1.Items.Count - 1)
{
MessageBox.Show("Büyük Değer Girişi Yaptınız.Kontrol Edin","Uyarı");
return;
}
listBox1.SelectedIndex = Convert.ToInt32(textBox1.Text);
}
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
textBox1.Text = Convert.ToString(listBox1.SelectedIndex);
}
}
}
//Bir sonraki makalede görüşmek üzere. Bahadır