当前位置:编程学习 > C#/ASP.NET >>

C#画曲线求助

我想用C#来画曲线,曲线的X轴坐标和Y轴坐标都是采集的信号,请问该怎么画呢?用什么控件还是怎么样啊?最好谁有个例子啊。谢谢各位。 --------------------编程问答--------------------
            using(Graphics g = Graphics.FromImage(bmp))
            {
                g.SmoothingMode = SmoothingMode.AntiAlias;
                g.DrawStringA(code, font, pen.Brush, 0f, 0f, spacing);
                pen.Width = 2;
                g.DrawCurve(pen, new Point[] {
                    new Point(0, rnd.Next(fontSize.Height)),
                    new Point(fontSize.Width >> 1, rnd.Next(fontSize.Height >> 2, fontSize.Height >> 1)),
                    new Point(fontSize.Width , rnd.Next(fontSize.Height)) });
            }
--------------------编程问答-------------------- 看看Zedgraph这个控件 --------------------编程问答-------------------- 不用控件,就用GDI画
用zedgraoh曲线图 --------------------编程问答-------------------- 直接使用GDI+绘图即可
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,