Example #1
0
 private void DrawPrintable(IPrintable printable, PaintEventArgs e)
 {
     if (printable != null)
     {
         printable.DrawOnGraphics(e.Graphics);
         RefreshScreen();
     }
 }