Hola, tengo una pregunta bastante simple.
Quiero hacer que el texto de un button sea compuesto por el texto de 3 textbox.
Algo así como:
textbox1: 123
textbox2: 456
textbox3: 789
button1: 123456789
Cómo pordría hacerlo? en c#
this.btn1.Text = this.txt1.Text + " " + this.txt2.Text + " " + this.txt3.Text
??