前提:WM_NCHITTEST是很重要的,只要鼠标在活动,Windows无时无刻在发这个消息进行探测。 虽然WndProc具有优先权,但是却刻意调用了inherited WndProc(Message);,因此会首先执行TWinControl.WMNCHitTest,如果发现是透明并且能找到一个TC Read More
posted @ 2016-03-31 16:32 findumars Views(1451) Comments(0) Diggs(0)
注意,这些函数只有Private一种形式(也就是不允许覆盖,但仍在动态表格中): 其中TWinControl对TControl有10个消息进行了覆盖(红色标记),其中有2个是WM_消息,8个是CM_消息。 再看它的WndProc函数: 当然还有DefaultHandler: 这样算下来,TWinCo Read More
posted @ 2016-03-30 22:36 findumars Views(1128) Comments(0) Diggs(0)
注意,这些函数只有Private一种形式(也就是不允许覆盖,但仍在动态表格中)(特别注意,这里居然没有WM_PAINT函数): 同时把它的WndProc列出来,这样它能处理的消息就齐了: 当然还有DefaultHandler: 我还特意查了一下Delphi 5.0和Delphi 7.0的差别,主要就 Read More
posted @ 2016-03-30 22:25 findumars Views(1098) Comments(0) Diggs(0)
相关资料:http://www.2ccc.com/news/Html/?1507.html DelphiXE7新建WebService具体操作:1.打开“DelphiXE7”->“File”->“New”->“Other”2.“New Items”->“Delphi Projects”->“WebS Read More
posted @ 2016-03-30 21:26 findumars Views(2100) Comments(0) Diggs(0)
[delphi] view plain copy [delphi] view plain copy unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System Read More
posted @ 2016-03-30 21:06 findumars Views(1618) Comments(0) Diggs(0)