当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > Kbuilder.cs GIVE ME K

ASP.NET
asp.net图片加水印
Asp.Net中页面运行时动态载入的UserControl内元素的事
ASP.NET底层架构探索之再谈.NET运行时(二)
借助封装类实现线程调用带参方法
面向对象设计思想(C#)
asp.net URL重写(URLRewriter) 简化版
GUID在.net里的使用,就用System.Guid结构
不要忽略c#中的using和as操作符
C#中ref和out的使用小结
C#的Web XML编程
asp.net2.0下 如何实现服务器端压缩包自解压
javascript如何调用C#后台代码中的过程 和ASP.NET调用
在ASP.NET中自动给URL加上超链接
ASP.NET 中处理页面“回退”的方法
ASP.NET的四种错误机制
asp.net跳转页面的三种方法比较
ASP.NET2.0中将GridView导出到Excel文件中
ASP.NET 2.0中GridView无限层复杂表头的实现
ASP.NET 2.0 中动态添加 GridView 模板列
十天学会ASP.net之第一天

ASP.NET 中的 Kbuilder.cs GIVE ME K


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 37 ::
收藏到网摘: n/a


using System;using System.Collections;using System.Drawing;using System.Drawing.Imaging;
namespace Ktest{ /// /// Kbuilder 的摘要说明。 /// public class Kbuilder { private int bottomMarge=10; private int leftMarge=20; /// /// 默认宽度 /// private int m_width=640; /// /// 高度默认400像素 /// private int m_height=480; /// /// 默认显示30天数据 /// private int m_lineCount=30; /// /// 默认显示的最高价50元 /// private int m_maxPrice=50; /// /// 存放价格表 /// private ArrayList m_prices; public Kbuilder() { m_prices=new ArrayList(); } /// /// 宽度 /// public int Width { get { return m_width; } set { m_width=value; } } /// /// 高度 /// public int Height { get { return m_height; } set { m_height=value; } } /// /// 显示线数 /// public int LineCount { get { return m_lineCount; } set { m_lineCount=value; } } public int MaxPrice { get { return m_maxPrice; } set { m_maxPrice=value; } } /// /// 添加价格 /// ///

开盘价
///
最高价
///
最低价
///
收盘价
public void Add(double openPrice,double maxPrice,double minPrice,double closePrice) { Ktest.Price a=new Price(); a.Open=openPrice; a.Max=maxPrice; a.Min=minPrice; a.Close=closePrice; if (m_prices.Count>=m_lineCount) { m_prices.RemoveAt(0); } m_prices.Add(a); } /// /// 画图 /// /// public Bitmap GetImage() { Bitmap image = new Bitmap(m_width,m_height); Graphics g = Graphics.FromImage(image); Pen black1=new Pen(Color.Black,1); Pen black2=new Pen(Color.Black,2); Pen red=new Pen(Color.Red,1);
Point o=new Point(leftMarge,m_height-bottomMarge); Point y=new Point(leftMarge,0); Point x=new Point(m_width,m_height-bottomMarge); Font font=new Font("宋体",8); int hStep=(m_height-bottomMarge)/m_maxPrice; int wStep=(m_width-leftMarge)/m_lineCount;
g.Clear(Color.White); g.DrawLine(black2,y,o); g.DrawLine(black2,o,x); for(int i=1;i<=m_maxPrice;i++) { g.DrawString(i.ToString(),font,Brushes.Black,1,m_height-bottomMarge-hStep*i); } for(int i=1;i<=m_lineCount;i++) { g.DrawString(i.ToString(),font,Brushes.Black,wStep*i,m_height-bottomMarge+1); } g.Save(); int iCount=0; foreach(Price p in m_prices) { int x1,x2,x3,y1,y2,y3,y4; x1=leftMarge+iCount*wStep+3; x2=x1-3+(int)wStep/2; x3=(leftMarge+wStep*iCount++)-2; y1=m_height-bottomMarge-(int)p.Max*hStep; y4=m_height-bottomMarge-(int)p.Min*hStep; System.Drawing.Brush brush; Pen curPen; if (p.Positive) { curPen=red; brush=System.Drawing.Brushes.Red; y3=m_height-bottomMarge-(int)p.Open*hStep; y2=m_height-bottomMarge-(int)p.Close*hStep; } else { curPen=black1; brush=System.Drawing.Brushes.Black; y2=m_height-bottomMarge-(int)p.Open*hStep; y3=m_height-bottomMarge-(int)p.Close*hStep; } g.FillRectangle(brush,x1,y2,wStep-5,y3-y2); g.DrawLine(curPen,x2,y1,x2,y4); } return image; } }}