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);
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:
ResponderEliminar//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 !!!
Que bueno saber que se entendio el codigo. .realmente es facil posicionar.
EliminarSaludos.
Este comentario ha sido eliminado por el autor.
ResponderEliminar