Delphi之三十六计之界面篇

2008-04-09 04:18:16来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

  1.为MDI窗体客户区填充位图

//在主窗体中添加Image1控件

//申明

private

 FClientInstance : TFarProc;
 FPrevClientProc : TFarProc;
 procedure ClientWndProc(var Message: Tmessage);

//------------------------------

procedure TMainFrm.ClientWndProc(var Message: Tmessage);

var

  Dc : hDC;
  Row : Integer;
  Col : Integer;

 begin

  with Message do
  case Msg of

 WM_ERASEBKGND:

 begin

  Dc := TWMEraseBkGnd(Message).Dc;
  for Row := 0 to ClientHeight div Image1.Picture.Height do
  for Col := 0 to ClientWidth div Image1.Picture.Width do
   BitBlt(Dc,
    Col * Image1.Picture.Width,
    Row * Image1.Picture.Height,
    Image1.Picture.Width,
    Image1.Picture.Height,
    Image1.Picture.Bitmap.Canvas.Handle,
    0,
    0,
    SRCCOPY);
   Result := 1;

   end;

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Delphi中用于读写的文件类型

下一篇:delphi三十六之磁盘篇

热门词条
热门标签