阅读量:4
在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组件来显示,并根据需要调整位置和尺寸。