主题:紧急求助一个c#画柱状图问题
cati33
[专家分:0] 发布于 2006-11-12 23:20:00
刚开始学c#,现在在用c#.net和oracl开发一个项目(一个信息管理系统),现在要在winform中画一个柱状图,数据通过查询数据库得到,现在在用GDI+做(也是从网上找得一些资料),但还是弄不出来,哪位高人能给我讲讲该怎么做啊,给个大体的代码最好,谢谢大家了,急用,
回复列表 (共1个回复)
沙发
yizhinantian [专家分:640] 发布于 2006-11-13 18:09:00
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);
}
我来回复