在C++ Builder中顯示多張圖片可以使用TImage組件和TOpenPictureDialog組件。
以下是一種實現顯示多張圖片的方法:
在C++ Builder的界面設計器中,將一個TImage組件拖放到窗體上,作為圖片的顯示區域。
添加一個TOpenPictureDialog組件到窗體上,用于選擇多張圖片。
在窗體的代碼中,創建一個TStringList對象,用于存儲選擇的多個圖片的文件路徑。
在需要顯示多張圖片的事件中(如一個按鈕的點擊事件),使用TOpenPictureDialog組件的Execute方法選擇多個圖片文件,并將選擇的文件路徑保存到TStringList對象中。
遍歷TStringList對象中的文件路徑,使用TImage組件的Picture屬性加載每張圖片,然后調整TImage組件的位置和尺寸,以便顯示多張圖片。
以下是示例代碼:
#include <vcl.h>
#pragma hdrstop
#include "Unit1.h"
#include <Vcl.Dialogs.hpp>
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(TObject *Sender)
{
TOpenPictureDialog *OpenPictureDialog = new TOpenPictureDialog(this);
TStringList *ImageFiles = new TStringList();
if (OpenPictureDialog->Execute())
{
ImageFiles->Assign(OpenPictureDialog->Files);
for (int i = 0; i < ImageFiles->Count; i++)
{
TImage *Image = new TImage(this);
Image->Parent = this;
Image->Picture->LoadFromFile(ImageFiles->Strings[i]);
// 根據需要調整圖片的位置和尺寸
Image->Left = i * 100;
Image->Top = 50;
Image->Width = 100;
Image->Height = 100;
}
}
delete OpenPictureDialog;
delete ImageFiles;
}
以上代碼中,當按鈕點擊時,會彈出文件選擇對話框,選擇多個圖片文件后,會在窗體上顯示多個圖片。每個圖片都使用一個新的TImage組件來顯示,并根據需要調整位置和尺寸。