在打开Form3时传个参数进来(Form1的richTextBox的内容);
在Form3中加入
private string str2;
public string InputStr2
{
    set
    {
       str2 = value;
    }
}
在Form3 f3 = New Form3();
f3.InputStr2 = richTextBox1.Text;