Graphics myGraphics = this.CreateGraphics();
Bitmap imagenInicial = new Bitmap("imagen_inicio.jpg");
Rectangle rectanguloImagenPpal = new Rectangle(0, 28, 944, 689);
//pARA LUEGO DIBUJAR EL RECTANGULO
Pen pen = new Pen(Color.Black, 3);
//Dibujo el rectangulo
myGraphics.DrawRectangle(pen, rectanguloImagenPpal);
//Dibujo la imagen
myGraphics.DrawImage(imagenInicial,rectanguloImagenPpal);