分享
 
 
 

使用Double-Buffer来实现无闪烁动态折线图

王朝other·作者佚名  2007-09-14
窄屏简体版  字體: |||超大  

由于这片例子是借鉴于别人的基础上写的,我只是在上面加上了动态画折线图这部分,因为原理很简单,当时也只是为了给网友一个例子。没想到,还有很多人做这个,那么我就把这部分的代码贴出来,分享给大家。

大致代码如下:

//--------------------------- A Demo using Double-Buffer in GDI+ -------------------------------

//----------------------------------------------------------------------------------------------

//---File: frmGraphView

//---Description: A demo using double-buffer in GDI+

//---Author: Knight

//---Date: Jul.3, 2006

//----------------------------------------------------------------------------------------------

//---------------------------{A Demo using Double-Buffer in GDI+}-------------------------------

using System;

using System.Drawing;

using System.Collections;

using System.ComponentModel;

using System.Windows.Forms;

using System.Data;

namespace GraphView

{

using System.Threading;

/// <summary>

/// Summary description for Form1.

/// </summary>

public class frmGraphView : System.Windows.Forms.Form

{

private System.Windows.Forms.PictureBox picGraph;

/// <summary>

/// Required designer variable.

/// </summary>

private System.ComponentModel.Container components = null;

private clsDrawThread myDrawThread = null;

private Thread thdDraw = null;

public frmGraphView()

{

//

// Required for Windows Form Designer support

//

InitializeComponent();

//

// TODO: Add any constructor code after InitializeComponent call

//

}

/// <summary>

/// Clean up any resources being used.

/// </summary>

protected override void Dispose( bool disposing )

{

if( disposing )

{

if (components != null)

{

components.Dispose();

}

}

base.Dispose( disposing );

}

#region Windows Form Designer generated code

/// <summary>

/// Required method for Designer support - do not modify

/// the contents of this method with the code editor.

/// </summary>

private void InitializeComponent()

{

this.picGraph = new System.Windows.Forms.PictureBox();

this.SuspendLayout();

//

// picGraph

//

this.picGraph.BackColor = System.Drawing.Color.Black;

this.picGraph.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;

this.picGraph.Dock = System.Windows.Forms.DockStyle.Fill;

this.picGraph.Location = new System.Drawing.Point(0, 0);

this.picGraph.Name = "picGraph";

this.picGraph.Size = new System.Drawing.Size(498, 375);

this.picGraph.TabIndex = 0;

this.picGraph.TabStop = false;

this.picGraph.Paint += new System.Windows.Forms.PaintEventHandler(this.picGraph_Paint);

//

// frmGraphView

//

this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);

this.ClientSize = new System.Drawing.Size(498, 375);

this.Controls.Add(this.picGraph);

this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;

this.MaximizeBox = false;

this.Name = "frmGraphView";

this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;

this.Text = "Graph View";

this.Closing += new System.ComponentModel.CancelEventHandler(this.frmGraphView_Closing);

this.Load += new System.EventHandler(this.frmGraphView_Load);

this.ResumeLayout(false);

}

#endregion

/// <summary>

/// The main entry point for the application.

/// </summary>

[STAThread]

static void Main()

{

Application.Run(new frmGraphView());

}

private void frmGraphView_Load(object sender, System.EventArgs e)

{

// Create thread class

myDrawThread = new clsDrawThread( this, new DrawHandler( RefreshPictureBox ),

picGraph.ClientSize.Width, picGraph.ClientSize.Height );

// Start sub thread to draw

thdDraw = new Thread( new ThreadStart( myDrawThread.DrawGraph ) );

thdDraw.Start();

}

private void RefreshPictureBox()

{

// Refresh picturebox

picGraph.Invalidate( picGraph.Region );

}

private void frmGraphView_Closing(object sender, System.ComponentModel.CancelEventArgs e)

{

// Close thread

myDrawThread.IsStop = true;

thdDraw.Join( 1 );

}

private void picGraph_Paint(object sender, System.Windows.Forms.PaintEventArgs e)

{

// Draw image

e.Graphics.DrawImage( myDrawThread.DrawImage,

picGraph.ClientRectangle,

picGraph.ClientRectangle,

GraphicsUnit.Pixel );

}

}

public delegate void DrawHandler();

public class clsDrawThread

{

private Bitmap bitGraph = null;

private bool blnStop = false;

private int nStartY = -1;

private int nEndY = -1;

private Random ranPoint = null;

private int nWidth = 0;

private int nHeight = 0;

private Form frmParent;

private DrawHandler pHandler = null;

/// <summary>

/// Constructor

/// </summary>

/// <param name="pParent"></param>

/// <param name="Handler"></param>

/// <param name="Width"></param>

/// <param name="Height"></param>

public clsDrawThread( Form pParent, DrawHandler Handler, int Width, int Height )

{

// Init class member

nWidth = Width;

nHeight = Height;

frmParent = pParent;//Parent form

pHandler = Handler;//Call back delegate

// Create double buffer

bitGraph = new Bitmap( nWidth, nHeight );

ranPoint = new Random( nHeight );//Create random

}

public bool IsStop

{

set{ blnStop = value;}

}

public Image DrawImage

{

get{ return bitGraph;}

}

/// <summary>

/// Sub thread entry function

/// </summary>

public void DrawGraph()

{

while( !blnStop )

{

Thread.Sleep( 400 );

if( blnStop )

break;

//Redraw bitmap

RedrawImage();

//Refresh pictorebox

try

{

frmParent.Invoke( pHandler );

}

catch{

break;}

}

}

/// <summary>

/// Re-draw image

/// </summary>

private void RedrawImage()

{

const int CLIP_WIDTH = 10;

Bitmap bitNew = new Bitmap( nWidth, nHeight );

Graphics gImage = Graphics.FromImage( bitNew );

// Use black color to fill the entire rectangle

gImage.FillRectangle( new SolidBrush( Color.Black ),

new Rectangle( new Point( 0, 0),

new Size( nWidth, nHeight ) ) );

// Copy image from source image

gImage.DrawImage( bitGraph,

new Rectangle( 0,0, nWidth - CLIP_WIDTH, nHeight ),

new Rectangle( CLIP_WIDTH,0, nWidth - CLIP_WIDTH, nHeight ),

GraphicsUnit.Pixel );

// Draw new clip image

if( nStartY < 0 )

nStartY = ranPoint.Next() % nHeight;

else

nStartY = nEndY;

nEndY = ranPoint.Next() % nHeight;

// Draw new line

gImage.DrawLine( new Pen( Color.Red, 1.5f ),

new Point( nWidth - CLIP_WIDTH, nStartY ),

new Point( nWidth - 1, nEndY ) );

// Set new image and release old image

Bitmap bitOld = bitGraph;

bitGraph = bitNew;

bitOld.Dispose();

}

}

}

参考原文:

http://www.codeproject.com/cs/media/flickerFreeDrawing.asp

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有