winCE上的代码能用的好少

时间:2013-04-27 10:59:22
【文件属性】:

文件名称:winCE上的代码能用的好少

文件大小:1.86MB

文件格式:RAR

更新时间:2013-04-27 10:59:22

画线 MFC

Graphics这个没有了么?? 这里不是很清楚么??还有注释呢。。 public sealed class Graphics : MarshalByRefObject, IDeviceContext, IDisposable 这个是那东西的定义。。简单理解成是你要在上面画画的对象就行了 这个不用出现在代码里面啊。。。。 System.Drawing.Pen myPen = new System.Drawing.Pen(System.Drawing.Color.Red);//画笔 对象 System.Drawing.SolidBrush myBrush = new System.Drawing.SolidBrush(System.Drawing.Color.Red);//画刷 刷子主要就是颜色 System.Drawing.Graphics formGraphics = this.CreateGraphics(); 这里是要在哪画画比如是在Panel上画就 = this.Panel.CreateGraphics(); formGraphics.FillEllipse(myBrush, new Rectangle(0,0,100,200));//画实心椭圆 这里就开始画了 formGraphics.DrawEllipse(myPen, new Rectangle(0,0,100,200));//空心圆 formGraphics.FillRectangle(myBrush, new Rectangle(0,0,100,200));//画实心方 formGraphics.DrawRectangle(myPen, new Rectangle(0,0,100,200));//空心矩形 formGraphics.DrawLine(myPen, 0, 0, 200, 200);//画线 formGraphics.DrawPie(myPen,90,80,140,40,120,100); //画馅饼图形 //画多边形 formGraphics.DrawPolygon(myPen,new Point[]{ new Point(30,140), new Point(270,250), new Point(110,240), new Point (200,170), new Point(70,350), new Point(50,200)}); //清理使用的资源 myPen.Dispose(); myBrush.Dispose(); formGraphics.Dispose(); 不知道WINCE是不是这样你可以试下


【文件预览】:
Draw
----DrawDoc.h(1KB)
----DrawDoc.cpp(2KB)
----StdAfx.cpp(206B)
----Draw.rc(10KB)
----Draw.cpp(4KB)
----DrawView.h(2KB)
----MainFrm.h(1KB)
----Draw.dsw(516B)
----Draw.plg(242B)
----Draw.opt(48KB)
----DrawView.cpp(3KB)
----Debug()
--------Draw.exe(116KB)
--------Draw.obj(22KB)
--------vc60.pdb(364KB)
--------vc60.idb(209KB)
--------Draw.res(7KB)
--------Draw.pch(5.38MB)
--------MainFrm.obj(20KB)
--------StdAfx.obj(104KB)
--------Draw.pdb(449KB)
--------DrawView.obj(22KB)
--------DrawDoc.obj(14KB)
--------Draw.ilk(301KB)
----Draw.h(1KB)
----ReadMe.txt(4KB)
----StdAfx.h(1KB)
----Draw.ncb(73KB)
----MainFrm.cpp(3KB)
----Draw.aps(28KB)
----Resource.h(490B)
----Draw.dsp(4KB)
----Draw.clw(2KB)
----res()
--------Draw.ico(1KB)
--------Toolbar.bmp(1KB)
--------Draw.rc2(396B)
--------DrawDoc.ico(1KB)

网友评论