C#实现记事本查找功能

时间:2021-04-27 07:12:08
 private void button1_Click(object sender, EventArgs e)
{
if (!(String.IsNullOrEmpty(this.textBox1.Text)))
{
if (this.richTextBox1.Text.Contains(this.textBox1.Text))
{
int loc = this.richTextBox1.Text.IndexOf(this.textBox1.Text, count + );
if (loc == -)
{
MessageBox.Show("查找结束");
count = -;
}
else
{
this.richTextBox1.Focus();
this.richTextBox1.Select(loc, this.textBox1.Text.Length);
count = loc;
}
}
}
}

注:容易丢失this.richTextBox1.Focus();这段代码