jueves, 6 de noviembre de 2014

C# - How to move a textbox to a different position/location

int x = textBox1.Location.X;
int y = textBox1.Location.Y;
textBox1.Top = x + 10;
textBox1.Left = y + 10;

No hay comentarios.:

Publicar un comentario