首先添加属性
public string Text { get { return this.TextBox1.Text} set { this.TextBox1.Text = value; } }
然后引用页面就可以用控件实例名.Text来读取了。