Delphi與DirectX之DelphiX(6): 讓TDXImageList和常規VCL交互使用
本例測試了兩個問題:
1、其他 VCL 加載的圖片能否給 TDXImageList 使用;
2、TDXImageList 中的圖片能否給其他 VCL 使用.
例子中先用 TPicture 加載了圖片, 然後給 TDXImageList;
然後把圖片繪制在了窗體上, 而非 TDXDraw 中.
繼續了解點 TDXImageList:
TDXImageList 控件只有兩個屬性: DXDraw 和 Items.
DXDraw 是圖像的目的地, 很好理解;
Items 是一個對象集合: TPictureCollection;
TPictureCollection 集合中包含的是一組 TPictureCollectionItem 對象;
TPictureCollectionItem 對象有 Picture 屬性, 這和其他 VCL 中的 TPicture 兼容!
本例用到了 TPictureCollectionItem 對象, 測試效果圖:
代碼文件:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, DXDraws, StdCtrls;
type
TForm1 = class(TForm)
DXImageList1: TDXImageList;
Button1: TButton;
Button2: TButton;
procedure FormCreate(Sender: TObject);
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
{借用其他 VCL 控件加載圖片}
procedure TForm1.FormCreate(Sender: TObject);
var
pic: TPicture;
begin
pic := TPicture.Create;
pic.LoadFromFile('c:\Temp\Test.bmp');
DXImageList1.Items.Add;
DXImageList1.Items[0].Picture.Assign(pic);
pic.Free;
end;
{這個代碼貌似簡單, 但代碼提示不好}
procedure TForm1.Button1Click(Sender: TObject);
begin
Self.Refresh;
Self.Canvas.Draw(0, 0, DXImageList1.Items[0].Picture.Graphic);
end;
{使用 TPictureCollectionItem 對象中轉一下, 寫起來更順手}
procedure TForm1.Button2Click(Sender: TObject);
var
picItem: TPictureCollectionItem;
begin
Self.Refresh;
picItem := DXImageList1.Items[0];
Self.Canvas.StretchDraw(ClientRect, picItem.Picture.Graphic);
end;
end.