G
gudubinghe
Unregistered / Unconfirmed
GUEST, unregistred user!
代码如下:
var bitmap:Tbitmap;
begin
bitmap.create;
bitmap.canvas.textout(10,10,'abc');
bitblt(form1.Canvas.Handle,0 ,0,form1.Width,form1.Height,
bitmap.Canvas.Handle,0,0,srccopy);
bitmap.free;
end;
执行后,在窗体上并没有abc三个字符,为什么?
var bitmap:Tbitmap;
begin
bitmap.create;
bitmap.canvas.textout(10,10,'abc');
bitblt(form1.Canvas.Handle,0 ,0,form1.Width,form1.Height,
bitmap.Canvas.Handle,0,0,srccopy);
bitmap.free;
end;
执行后,在窗体上并没有abc三个字符,为什么?