public RadForm1()
{
InitializeComponent();
this.radTextBox1.ShowEmbeddedLabel = true;
this.radTextBox1.EmbeddedLabelText = "Enter name:";
}
private void RadForm1_Shown(object sender, EventArgs e)
{
this.radTextBox1.Focus();
}