利用图版背景颜色将PANEL透明化


     //--------------------  panel 透明

    //*
    HRGN hRgn = NULL;
    Graphics::TBitmap* MemoryBitmap = new Graphics::TBitmap;
    MemoryBitmap->Assign(Image7->Picture->Graphic);
    TColor ttt=MemoryBitmap->Canvas->Pixels[11][5];// MemoryBitmap->ca


    for(int n=0; n<pnl_left->Width; n++)
    {
        for (int j=0;j<pnl_left->Height; j++)
        {
              TRect Rect;
              Rect.top=j;
              Rect.left=n;
              Rect.bottom=Rect.top+1;
              Rect.right=Rect.left+1;
              if ( MemoryBitmap->Canvas->Pixels[0][0]!=MemoryBitmap->Canvas->Pixels[n][j])// MemoryBitmap->ca)
              {
                   HRGN hRgn1 = CreateRectRgnIndirect(
                       &Rect);
                   if (hRgn == NULL)
                       hRgn = hRgn1;
                   else {
                       CombineRgn(hRgn, hRgn, hRgn1,
                           RGN_OR);
                       DeleteObject(hRgn1);
                   }
              }

        }

    }
    SetWindowRgn(pnl_left->Handle, hRgn, TRUE);
    DeleteObject(hRgn);
    delete MemoryBitmap;


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值