往窗体上添加两个TextBox 和 一个按钮
//查找第一个匹配项功能
private void button1_Click(object sender, EventArgs e)
{
//ToLower() 是不区分大小写
string str = textBox1.Text.ToLower();//要查询的字符
string text = textBox2.Text.ToLower();//要检索的文本
int n = text.IndexOf(str); //字符所在位置
if (n != -1)//-1 为不存在
{
textBox2.Focus();//获取焦点,否则选中文本不起作用
textBox2.Select(n, str.Length);//选中字符起始位置,字符长度
return;
}
MessageBox.Show(string.Format("文中找不到 \"{0}\"",textBox1.Text);
}
textBox1.Focus();
textBox1.Select(1, 5);
textBox1.Focus();//获得焦点
textBox1.Select(0,3); 选择起点和长度
楼上都是正解,不明白的话可以查阅MSDN关于窗体