设置背景图片

来源:互联网 发布:淘宝网店商标 编辑:程序博客网 时间:2024/04/29 11:37

TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
    : TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm1::FormPaint(TObject *Sender)
{
    Graphics::TBitmap* pBmp = new Graphics::TBitmap();
    pBmp->LoadFromFile("Vista Luna.bmp");
    TRect MyRect = TRect(0,0,Width,Height);
    Form1->Canvas->StretchDraw(MyRect,pBmp);
    delete pBmp;
}
//---------------------------------------------------------------------------
void __fastcall TForm1::FormResize(TObject *Sender)
{
    Form1->Refresh();
}
//--------------------------------------------------------------------------- 

 

原创粉丝点击