Assuming you have made a textbox named textBox1 in the designer, simply make a static link to it, like this:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
textBox1lnk = textBox1;
}
}
static TextBox textBox1lnk = new TextBox();