public override void Drawer(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)); }
public override void Drawer(Object source, PaintEventArgs e) { photo.Drawer(source, e); if (mouse_click == true) // if mouse was clicked, then draw the border { e.Graphics.DrawRectangle(new Pen(color, 10), 25, 15, 215, 225); } }
public override void Drawer(Object source, PaintEventArgs e) { photo.Drawer(source, e); }
public override void Drawer(Object source, PaintEventArgs e) { photo.Drawer(source, e); e.Graphics.DrawRectangle(new Pen(color, 10), 25, 15, 215, 225); }