其他分享
首页 > 其他分享> > Delphi元件的handle的建立

Delphi元件的handle的建立

作者:互联网

控制项的 window handle 是在 CreateWnd 方法中建立的。
 
如果你想要在建立 window handle 後接着做某些动作那麽你应该改写 CreateWnd 方法:
procedure TMyClass.CreateWnd;
begin
// 现在还没取得 window handle
inherited CreateWnd;
// 呼叫 inherited 以取得 window handle
// 在这里撰写你想要执行的动作
end

 

标签:handle,建立,CreateWnd,Delphi,window,inherited,想要,元件
来源: https://www.cnblogs.com/jijm123/p/15114735.html