我有两个表单,1 和 2。Form1 有一个文本框,form2 有一个文本框和按钮。我想转到指定的行,这意味着当我输入 form2 的文本框的值时,我的鼠标光标会转到 form1 的文本框。
private void button1_Click(object sender, EventArgs e)
{
int line = Form1.ab;
for (int i = 1; i < line; i++)
{
if (i == Convert.ToInt16( textBox1.Text))
{
// fr.textbox1 is a textbox form1 and
// textbox1.text is a textbox of the form1
fr.textBox1.SelectionStart =
int.Parse( textBox1.Text) ;
fr.textBox1.ScrollToCaret();
break;
}
}
}