Delphi中标准控件是不支持png图片的,据说从Window2000后增加gdiplus.dll库处理更多的gdi图像,其中包括png。 关键的几个api GdipCreateBitmapFromFile(),从文件载入图像(不单只Bitmap) GdipCreateBitmapFromStrea Read More
posted @ 2017-01-24 23:46
findumars
Views(2832)
Comments(0)
Diggs(0)
现象:MainMenu设置Images属性后,看不到快捷按键的下划线,如:新建(&N) 分析:VCL中Menus.pas单元的代码,看到如下语句procedure TMenuItem.AdvancedDrawItem(ACanvas: TCanvas; ARect: TRect; State: TO Read More
posted @ 2017-01-24 23:29
findumars
Views(598)
Comments(0)
Diggs(0)
http://blog.csdn.net/zswang/article/details/1214827 Read More
posted @ 2017-01-24 23:28
findumars
Views(288)
Comments(0)
Diggs(0)
http://download.csdn.net/detail/zswang/207199 Read More
posted @ 2017-01-24 23:18
findumars
Views(408)
Comments(0)
Diggs(0)
Controls.pas单元中有一个FindControl函数,通过句柄获得对应的TWinControl对象。 function FindControl(Handle: HWnd): TWinControl;begin Result := nil; if (Handle <> 0) then beg Read More
posted @ 2017-01-24 23:14
findumars
Views(753)
Comments(0)
Diggs(0)