1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| TForm1 *Form1;
TImage* mat0_0;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm1::FormCreate(TObject *Sender)
{
mat0_0 = new TImage(StringGrid1);
mat0_0->Parent=StringGrid1;
StringGrid1->Objects[0][0]=mat0_0;
}
//---------------------------------------------------------------------------
void __fastcall TForm1::StringGrid1Click(TObject *Sender)
{
mat0_0->Picture->LoadFromFile("Image1.bmp");
} |