也说说c++builder中的不规则窗体的实现
也说说c++builder中的不规则窗体的实现 最近看了《C++Builder中不规则窗体的快速显示》
{
Form1->TransparentColorValue=clWhite;
Form1->TransparentColor=true;
WndRgn=CreateRectRgn(0,30,Image1->Width,Image1->Height);
//设定矩形区域的API
//显示不规则窗体
SetWindowRgn(Handle,WndRgn,true);
//SetWindowPos(Handle,HWND_TOP,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);