public void Drawer2(object source, PaintEventArgs e)
 {
     photo.Drawer(source, e);
     e.Graphics.DrawString(tag,
                           new Font("Arial", 16),
                           new SolidBrush(Color.Black),
                           new PointF(80, 100 + number * 20));
 }
Ejemplo n.º 2
0
 public void Drawer2(object source, PaintEventArgs e)
 {
     photo.Drawer(source, e);
     e.Graphics.DrawRectangle(new Pen(color, 10), 25, 15, 215, 225);
 }