private PointF[] p1 = {new PointF(0.3f, 0f), new PointF(5.3f, 0f), new PointF(4.3f, 1f), new PointF(1.3f, 1f), new PointF(1.3f, 1f), new PointF(1.3f, 1f)};
private void DigitsControl_Paint(object sender, System.Windows.Forms.PaintEventArgs e) { Int64 i = FValue; int x = Width - FSize * 7 - 5; do { DrawOneNumber(i % 10, e.Graphics, new Point(x, 5)); i /= 10; x -= FSize * 7; } while (i>0); }