阅读与检索

  纸质书籍更符合阅读习惯,阅读起来也有缺点,假设看到了200页时想到了之前某个阅读过的相关知识点,想回去再看一下,或者统计归类一下相关知识点,这时候一页页翻回去显然不可取,如果此时有电子版的书籍,那检索起来就很方便。特别是类似于《Windows程序设计》这种技术类的书籍,不管电子书是中文版还是英文版,都可以搜索,因为其中的术语都是英文,没有翻译,例如:wParam。这样,搜索起来就方便很多。

  例如在看《Windows程序设计》中文版95页代码的时候,想起之前讲到过WM_VSCROLL的相关参数wParam的一些知识点,就可以在电子版搜索wParam,找到87页有如下一段讲述:

  When you posit ion the mouse cursor over the scroll bar thumb and press the mouse but ton, you can move the thumb. This generates scroll bar messages with not if icat ion codes of SB_THUMBTRACK and SB_THUMBPOSITION.When the low word of wParam is SB_THUMBTRACK, the high word of wParam is the cur rent posit ion of the scroll bar thumb as the user is dragging it . This posit ion is within the minimum and maximum values of the scroll bar range. When the low word of wParam is SB_THUMBPOSITION, the high word of wParam is the f inal posit ion of the scroll bar thumb when the user released the mouse but ton. For other scroll bar act ions, the high word of wParam should be ignored.

对应中文版的85页。当然仅就这个问题而言在MSDN中应该也能查到需要的参考。

原文地址:https://www.cnblogs.com/tingshuixuan2012/p/3112494.html