VCL里源码如下:

procedure TWinControl.WMParentNotify(var Message: TWMParentNotify);
begin
with Message do
if (Event <> WM_CREATE) and (Event <> WM_DESTROY) or
not DoControlMsg(Message.ChildWnd, Message) then inherited;
end; function DoControlMsg(ControlHandle: HWnd; var Message): Boolean;
var
Control: TWinControl;
begin
DoControlMsg := False;
Control := FindControl(ControlHandle);
if Control <> nil then
with TMessage(Message) do
begin
Result := Control.Perform(Msg + CN_BASE, WParam, LParam);
DoControlMsg := True;
end;
end;

最新文章

  1. iOS获取app图标和启动图片名字(AppIcon and LaunchImage&#39;s name)
  2. JSONP跨域操作
  3. mysql按汉语拼音首字母排序
  4. Antialiasing with Transparency
  5. 第一个demo
  6. 关于Model层中Datetime Datetime? 默认值的问题
  7. DOS批处理命令-goto命令
  8. @class的基本使用
  9. AssertValid函数学习
  10. html css相对单位
  11. 一起来学linux:NFS服务器搭建
  12. Learn Lua in 15 Minutes
  13. CLOSE_WAIT问题-TCP
  14. Objective-C RunTime 学习笔记 之 atomic/nonatomic 关键字
  15. Python序列化操作与反序列操作
  16. [国家集训队] calc
  17. hdu5672 尺取
  18. cocos源码分析--ClippingNode绘图原理
  19. Notepad++好用的功能和插件
  20. 实习第二天-String对象的不可变性-未解决

热门文章

  1. Unity Interface Serialization-Expose Interface field In Inspector
  2. Spring源代码解析 ---- 循环依赖
  3. MSSQL - 视图操作
  4. xcode APP 打包以及提交apple审核详细流程(新版本更新提交审核)
  5. HDU1686——Oulipo
  6. CentOS 配置 ssh
  7. hdu1370-Biorhythms
  8. 初探eXtreme scale
  9. 5.单行函数,多行函数,字符函数,数字函数,日期函数,数据类型转换,数字和字符串转换,通用函数(case和decode)
  10. 使用JDBC对数据库实现批处理操作