上一页 1 2 3 4 5 6 7 8 ··· 21 下一页
摘要: TGBBitmap用在GDI+中,而TBitmap用在GDI中,有的时候,我们需要将它们进行转换,例如我们要将一个JPEG的图片放到TBitmap中,这样它就可以很方便的被Delphi中的多个控件所使用(如ImageList、Image等等控件)。我们通过TGBBitmap的GetHBITMAP方法可以实现这种转换,如下:代码中的GetHBITMAP方法第一个参数为背景颜色,对于非透明图像,这个参数设置为什么颜色都没有所谓.但对于透明图像(如png),我们就能看到这个背景色了(如图2,图片中间透明的,于是我们就看到了白色的背景色),第二个参数是位图句柄变量.TBitmap 转 TGBBitma 阅读全文
posted @ 2011-01-29 20:07 巅枫 阅读(1238) 评论(0) 推荐(0) 编辑
摘要: GDI+ 将字样相同但字形不同的字体分组为字体系列。例如,下面是同一个字样(Arial),不同的字形 :--------------------------------------------------------Arial Regular 常规Arial Bold 粗体Arial Italic 斜体Arial Bold Italic 粗斜体-------------------------------------------------GDI+ 使用四种字形形成字体系列:常规、粗体、倾斜和粗斜体。像 narrow 和 rounded 之类的形容词不被视为字形;而是作为字体系列名的一部分。如 阅读全文
posted @ 2011-01-28 22:50 巅枫 阅读(4786) 评论(0) 推荐(0) 编辑
摘要: unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;type TForm1 = class(TForm) Button1: TButton; procedure Button1Click(Sender: TOb... 阅读全文
posted @ 2011-01-24 21:04 巅枫 阅读(251) 评论(0) 推荐(0) 编辑
摘要: unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;type TForm1 = class(TForm) Button1: TButton; procedure Button1Click(Sender: TOb... 阅读全文
posted @ 2011-01-24 20:37 巅枫 阅读(222) 评论(0) 推荐(0) 编辑
摘要: unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;type TForm1 = class(TForm) Button1: TButton; procedure Button1Click(Sender: TOb... 阅读全文
posted @ 2011-01-24 18:51 巅枫 阅读(300) 评论(0) 推荐(0) 编辑
摘要: 决定要好好的学习一下“类”了,参与万一老师的博客,开干了!![代码] 阅读全文
posted @ 2011-01-24 18:49 巅枫 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 创建窗口:基本的步骤使用低层WindowsAPI函数创建窗口是一个繁琐但是易于理解的任务。为了创建一个窗口,开发者必须实现下面的三个步骤:1.首先必须注册一个新的窗口类(RegisterClass)。如果开发人员创建的窗口基于系统预定义的类,则该过程可以省略。2.然后使用窗口创建函数创建窗口(CreateWindowEx)。3.最后,将窗口显示在屏幕上(UpdateWindow)。如果在调用创建窗口函数时dwStyle参数中包括了WSVISIBLE风格标志,则这个过程可以省略。新建控制台程序 阅读全文
posted @ 2011-01-17 18:07 巅枫 阅读(1061) 评论(1) 推荐(1) 编辑
摘要: 构造函数方法属性 阅读全文
posted @ 2011-01-12 15:27 巅枫 阅读(733) 评论(0) 推荐(0) 编辑
摘要: unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;type TForm1 = class(TForm) Button1: TButton; Edit1: TEdit; Edit2: TEdit; Edit3:... 阅读全文
posted @ 2011-01-11 12:20 巅枫 阅读(470) 评论(0) 推荐(0) 编辑
摘要: unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, TeCanvas;type TForm1 = class(TForm) ButtonColor1: TButtonColor; ButtonColor2: ... 阅读全文
posted @ 2010-12-31 17:53 巅枫 阅读(766) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 21 下一页