|
TImage *Image11;
Image11 = new TImage(this);
Image11->Parent = Form1;
Image11->Width = 70;
Image11->Height = 50;
Image11->Left = 100;
Image11->Top = 100;
ImageList1->GetBitmap(b,Image11->Picture->Bitmap);
이렇게 동적으로 생성한후에 이미지 리스트에 있는 이미지로 출력하려고 하는데요.
보이질 않습니다.
버튼을 동적생성하여 보면 분명히 잘 나오는데 이미지만 안나오네요. 도와주세요
|