Ejemplo n.º 1
0
 private void pictureBox1_MouseDown(object sender, MouseEventArgs e)
 {
     if (tool != null)
     {
         tool.onMouseDown(sender, e);
     }
 }
Ejemplo n.º 2
0
 private void pictureBox1_MouseDown(object sender, MouseEventArgs e)
 {
     if (tool != null)
     {
         bool       isFill;
         HatchStyle hatchStyle;
         DashStyle  dashStyle;
         Pen        pen;
         Font       font;
         prepareInfo(out isFill, out hatchStyle, out dashStyle, out pen, out font);
         tool.onMouseDown(sender, e, isFill, pen, btnFillColor.BackColor, cbbBrush.Text, hatchStyle, font);
     }
 }