Ver Mensaje Individual
  #5 (permalink)  
Antiguo 11/11/2010, 09:40
Avatar de Hanstoo
Hanstoo
 
Fecha de Ingreso: julio-2010
Mensajes: 74
Antigüedad: 13 años, 9 meses
Puntos: 1
Respuesta: No mover Form c#

en el evento move del Formulario

puse este codigo y me funcionno muy bien

espero te sirva la Info..

Cita:
if (this.Location.X <= 1)
this.Location = new Point(0, this.Location.Y);
if (this.Location.Y <= 1)
this.Location = new Point(this.Location.X, 0);
if (this.Location.X >= 1)
this.Location = new Point(this.Location.X, 0);