Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
Ayrıca eğer ki direk aynı değeri değil de arama gibi yapmak istiyorsan; Yani mesela textbox'aList<ListViewItem> item = listView1.Items.Cast<ListViewItem>().Select(r => r).Where(r => r.Text == textBox1.Text).ToList();
if (item.Count > 0)
{
listBox1.Items.Add(item[0].Text);
//Ya da index artık hangi değerini istiyorsan. Diğer yol ise mesela foreach o da şöyle olur
}
foreach (ListViewItem deger in listView1.Items)
{
if (deger.Text==textBox1.Text)
{
listBox1.Items.Add(deger.Text);
}
}