private void Form1_Load(object sender, System.EventArgs e)
{
listBox1.Items.Add("Angelina");
listBox1.Items.Add("Isabella");
listBox1.Items.Add("Sarah");
}
private void button1_Click(object sender, System.EventArgs e)
{
// Set the search string:
string myString = "Isabella";
// Search starting from index -1:
int index = listBox1.FindString(myString, -1);
if (index != -1)
{
// Select the found item:
listBox1.SetSelected(index,true);
// Send a success message:
MessageBox.Show("Found the item \"" + myString +
"\" at index: " + index);
}
else
MessageBox.Show("Item not found.");
}
27
2012
03
ListBox 控件中的项
发布:郑德才博客 | 分类:学习之路 | 评论:0 | 浏览:
相关文章:
C# webBrowser控件使用心得 (2013-11-23 20:26:15)
一个窗口调用另一个窗口的控件 (2012-4-8 17:53:37)
C# 常用控件及单击事件 (2012-4-5 20:2:59)
C#窗体及控件的快捷键 (2012-4-1 13:49:42)
C# Winfrom中遍历控件 (2012-3-28 20:59:42)
发表评论:
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。