Zooming in on quadratic curve line in c#
问题 I am relatively new to c# and i am trying to draw the quadratic curve with an X and Y graph to scale with. The i drew curve although appears at the upper left corner of the screen which is very small and barely noticeable. Is there possible way to enlarge my curve line and align it to the middle so it can be shown properly? protected override void OnPaint(PaintEventArgs e) { float a = 1, b = -3, c = -4; double x1, x2, x3, y1, y2, y3, delta; delta = (b * b) - (4 * a * c); x1 = ((b * (-1)) +