中国IT动力,最新最全的IT技术教程
最新100篇 | 推荐100篇 | 专题100篇 | 排行榜 | 搜索 | 在线API文档 | 网通镜像
首 页 | 程序开发 | 操作系统 | 软件应用 | 图形图象 | 网络应用 | 精文荟萃 | 教育认证 | 硬件维护 | 未整理篇 | 站长教程
ASP JS PHP工程 ASP.NET 网站建设 UML J2EESUN .NET VC VB VFP 网络维护 数据库 DB2 SQL2000 Oracle Mysql
服务器 Win2000 Office C DreamWeaver FireWorks Flash PhotoShop 上网宝典 CorelDraw 协议大全 网络安全 微软认证
硬件维护  CPU  主板  硬盘  内存  显卡  显示器  键盘鼠标  声卡音箱  打印机  机箱电源  BIOS  网卡  C#  Java  Delphi  vs.net2005
  当前位置:> 程序开发 > 编程语言 > .NET > 临时文章
Kbuilder.cs GIVE ME K
作者:未知 时间:2005-03-04 12:12 出处:Blog 责编:chinaitpower
              摘要:暂无

using System;
using System.Collections;
using System.Drawing;
using System.Drawing.Imaging;

namespace Ktest
{
 /// <summary>
 /// Kbuilder 的摘要说明。
 /// </summary>
 public class Kbuilder
 {
  private int bottomMarge=10;
  private int leftMarge=20;
  /// <summary>
  /// 默认宽度
  /// </summary>
  private int m_width=640;
  /// <summary>
  /// 高度默认400像素
  /// </summary>
  private int m_height=480;
  /// <summary>
  /// 默认显示30天数据
  /// </summary>
  private int m_lineCount=30;
  /// <summary>
  /// 默认显示的最高价50元
  /// </summary>
  private int m_maxPrice=50;
  /// <summary>
  /// 存放价格表
  /// </summary>
  private ArrayList m_prices;
 
  public Kbuilder()
  {
   m_prices=new ArrayList();
  }
  /// <summary>
  /// 宽度
  /// </summary>
  public int Width
  {
   get
   {
    return m_width;
   }
   set
   {
    m_width=value;
   }
  }
  /// <summary>
  /// 高度
  /// </summary>
  public int Height
  {
   get
   {
    return m_height;
   }
   set
   {
    m_height=value;
   }
  }
  /// <summary>
  /// 显示线数
  /// </summary>
  public int LineCount
  {
   get
   {
    return m_lineCount;
   }
   set
   {
    m_lineCount=value;
   }
  }
  public int MaxPrice
  {
   get
   {
    return m_maxPrice;
   }
   set
   {
    m_maxPrice=value;
   }
  }
  /// <summary>
  /// 添加价格
  /// </summary>
  /// <param name="openPrice">开盘价</param>
  /// <param name="maxPrice">最高价</param>
  /// <param name="minPrice">最低价</param>
  /// <param name="closePrice">收盘价</param>
  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);   
  }
  /// <summary>
  /// 画图
  /// </summary>
  /// <returns></returns>
  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;
  }
 }
}

关闭本页
 
首页 | 投资与合作 | 服务条款 | 隐私政策 | 收藏本站 | 设为首页 | 新用户注册 | 免责声明 | 使用帮助
Copyright ©2005-2008 chinaitpower.com All rights reserved. www.chinaitpower.com 版权所有