jueves, 6 de noviembre de 2014

C# - Como mover un textbox de posicion en la pantalla (por coordenadas)

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

No hay comentarios.:

Publicar un comentario