C# 记事本查找功能能查找 但是不选中 怎么回事

privatevoidbutton1_Click(objectsender,EventArgse){Form1f1=newForm1();if(textBox1.Text... private void button1_Click(object sender, EventArgs e)
{
Form1 f1 = new Form1();
if (textBox1.Text != string.Empty)
{
keyword = textBox1.Text;
if (checkBox1.Checked == true)//区分大小写时
{
if (radioButton2.Checked == true)//向下查找
{
pos = text1.IndexOf(keyword, pos);
}
if (radioButton1.Checked == true)//向上查找
{
upos = text1.LastIndexOf(keyword, upos);
}
}
else
{
keyword = keyword.ToLower();
text1 = text1.ToLower();
if (radioButton2.Checked == true)
{
pos = text1.IndexOf(keyword, pos);
}
if (radioButton1.Checked == true)
{
upos = text1.LastIndexOf(keyword, upos);
}
}
if (radioButton2.Checked == true)//向下查找
{
if (pos == -1)
{
MessageBox.Show("对不起!找不到该字符串!");
pos = 0;
}
else {;
f1.richTextBox1.Select(pos,keyword.Length);
pos++;
f1.Activate();
}

}
if (radioButton1.Checked == true)//向上查找
{
if (upos == -1)
{
MessageBox.Show("对不起!找不到该字符串!");
upos = text1.Length;
}
else
{
f1.richTextBox1.Select(upos, keyword.Length);
if (upos != 0)
{
upos--;
}
f1.Activate();
}
}
}
else
return;
}
我调试觉得没有问题 也跟踪到了pos,但就是执行的时候,运行到select()不选中 这是为什么 急急急啊 求解答
就是不变蓝色 不不像选中一样变蓝
展开
 我来答
阳光的雷咩咩
2015-03-09 · TA获得超过1.4万个赞
知道大有可为答主
回答量:2.3万
采纳率:66%
帮助的人:7818万
展开全部
要变蓝色除了Select还要Focus。
更多追问追答
追问
我加了f1.richTextBox1.focus()在f1.richTextBox1.Select(upos, keyword.Length);之前 怎么还是没有变化
追答
断点看Select方法内部的参数是多少?
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式