回 帖 发 新 帖 刷新版面

主题:紧急求助一个c#画柱状图问题

刚开始学c#,现在在用c#.net和oracl开发一个项目(一个信息管理系统),现在要在winform中画一个柱状图,数据通过查询数据库得到,现在在用GDI+做(也是从网上找得一些资料),但还是弄不出来,哪位高人能给我讲讲该怎么做啊,给个大体的代码最好,谢谢大家了,急用,

回复列表 (共1个回复)

沙发

public void DrawRectangleFloat(PaintEventArgs e)
{
// Create pen.
Pen blackPen = new Pen(Color.Black, 3);
// Create location and size of rectangle.
float x = 0.0F;
float y = 0.0F;
float width = 200.0F;
float height = 200.0F;
// Draw rectangle to screen.
e.Graphics.DrawRectangle(blackPen, x, y, width, height);
}

我来回复

您尚未登录,请登录后再回复。点此登录或注册