Exemple #1
0
        private void Form1_Paint(object sender, PaintEventArgs e)
        {
            GraphicsGraphMaker graph = new GraphicsGraphMaker(e, x, y, height,
                                                              width, notchWidth);

            GraphicsEllipse ellipse = new GraphicsEllipse(e, x, y, eHeight,
                                                          eWidth, xOriginOffset, yOriginOffset);
        }
Exemple #2
0
        private void Form1_Paint(object sender, PaintEventArgs e)
        {
            // turn this into a reusable class
            //going to need to feed the Paint event to a reusable class
            //or find another way to start the graph
            //add constructors that specify the size of the graph


            //Graphics g = e.Graphics;

            GraphicsGraphMaker g = new GraphicsGraphMaker(e);
            // = new GraphicsGraphMaker(g);
        }