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()不选中 这是为什么 急急急啊 求解答
就是不变蓝色 不不像选中一样变蓝 展开
{
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()不选中 这是为什么 急急急啊 求解答
就是不变蓝色 不不像选中一样变蓝 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询