I have to admit I am bit confused by your question. Are you asking how to change the text on a text control in C#? It's done like this (my text control is named textBox1).
textBox1.Text = "Attilan";
Set the Text property and you are all set.
If you're asking about a graphical keyboard to appear, someone else had better answer that.