viernes, 24 de junio de 2011

Cambiar de posicion un Control en un Form para C#

Vamos a modificar la posicion de un control en un Form de C#, en este ejemplo un label y un textbox.
Adicionalmente estan en groupbox diferentes asi que tambien veremos como asociarlos a otro groupbox.


groupBox2.Controls.Add (lbFechaMuerteFin);
groupBox2.Controls.Add (dtFechaMuerte);
label1.Location = new Point(625, 24);
label2.Location = new Point(761, 20);

groupBox1.Controls.Remove(lbFechaMuerteFin);
groupBox1.Controls.Remove(dtFechaMuerte);

3 comentarios:

  1. Aquí lo emplee para dibujar o situar las piezas de un Tablero de Damas, los que ven por nombre tapa1,tapa2,tapa3..etc son varios PictureBox a los que le cambié el nombre:

    //metan este codigo dentro de un button1 si quieren
    tapa1.Visible = true; tapa2.Visible = true; tapa3.Visible = true; tapa4.Visible = true;
    tapa5.Visible = true; tapa6.Visible = true; tapa7.Visible = true; tapa8.Visible = true;
    tapa9.Visible = true; tapa10.Visible = true; tapa11.Visible = true; tapa12.Visible = true;
    //aquí los ubica en el tablero
    this.tapa1.Location = new Point(0, 60); this.tapa2.Location = new Point(60, 0); this.tapa3.Location = new Point(60, 120);
    this.tapa4.Location = new Point(120, 60); this.tapa5.Location = new Point(180, 0); this.tapa6.Location = new Point(180, 120);
    this.tapa7.Location = new Point(240, 60); this.tapa8.Location = new Point(300, 0); this.tapa9.Location = new Point(300, 120);
    this.tapa10.Location = new Point(360, 60); this.tapa11.Location = new Point(420, 0); this.tapa12.Location = new Point(420, 120);

    GRACIAS !!!

    ResponderEliminar
    Respuestas
    1. Que bueno saber que se entendio el codigo. .realmente es facil posicionar.
      Saludos.

      Eliminar
  2. Este comentario ha sido eliminado por el autor.

    ResponderEliminar