程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> Delphi學習使用資源文件 - 用 Image 顯示資源中的圖片

Delphi學習使用資源文件 - 用 Image 顯示資源中的圖片

編輯:Delphi

 首先編輯 rc 文件如下(假定圖片文件放在程序目錄下的 img 文件夾下):

  bmp1 BITMAP imgbmpFile1.bmp

  bmp2 BITMAP imgbmpFile2.bmp

  或者:

  bmp1,BITMAP,imgbmpFile1.bmp

  bmp2,BITMAP,imgbmpFile2.bmp

  然後在窗體上添加一個 Image、兩個 Button, 代碼如下:

unit Unit1; 
 
interface 
 
uses 
 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, 
 Dialogs, ExtCtrls, StdCtrls; 
 
type 
 TForm1 = class(TForm) 
  Image1: TImage; 
  Button1: TButton; 
  Button2: TButton; 
  procedure Button1Click(Sender: TObject); 
  procedure Button2Click(Sender: TObject); 
  procedure FormCreate(Sender: TObject); 
 end; 
 
var 
 Form1: TForm1; 
 
implementation 
 
{$R *.dfm} 
 
procedure TForm1.FormCreate(Sender: TObject); 
begin 
 Image1.AutoSize := True; 
end; 
 
procedure TForm1.Button1Click(Sender: TObject); 
begin 
 Image1.Picture.Bitmap.Handle := LoadBitmap(HInstance, 'bmp1'); 
end; 
 
procedure TForm1.Button2Click(Sender: TObject); 
begin 
 image1.Picture.Bitmap.LoadFromResourceName(HInstance, 'bmp2'); 
end; 
 
end.  

效果圖: 

Delphi學習使用資源文件 - 用 Image 顯示資源中的圖片


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved