上一页 1 2 3 4 5 6 ··· 17 下一页
转载:https://www.cnblogs.com/strive-sun/p/14068047.html 下面的例子是将桌面的图标隐藏起来,使用了FWF_NOICONS样式。 #include <ShlObj.h> // Shell API #include <atlcomcli.h> // CC Read More
posted @ 2021-12-29 14:51 _KikyoBK Views(122) Comments(0) Diggs(0) Edit
转载:https://www.cnblogs.com/iwana/p/13857583.html https://www.cnblogs.com/strive-sun/p/13820834.html #include<Windows.h> #include<commctrl.h> #include Read More
posted @ 2021-12-28 21:03 _KikyoBK Views(849) Comments(0) Diggs(0) Edit
要实现这种,拖动窗口时,一个显示原窗口内容的窗口跟随鼠标移动。下面的内容与实现有关,记录一下 转载:https://blog.csdn.net/tyhjtw/article/details/38107577 带有WS_EX_LAYERED风格的窗口也就是我们说的分层窗口,主要是为了了实现异形窗口和窗 Read More
posted @ 2021-12-27 20:37 _KikyoBK Views(1136) Comments(0) Diggs(0) Edit
转载:https://blog.csdn.net/EbowTang/article/details/30050705 参考文章: 1,typedef的用法总结,http://www.cnblogs.com/csyisong/archive/2009/01/09/1372363.html2,typed Read More
posted @ 2021-11-25 19:20 _KikyoBK Views(434) Comments(0) Diggs(0) Edit
转载:https://www.cnblogs.com/endenvor/p/9753135.html 在32位的Windows系统中,每一个进程都有权访问他自己的4GB(232=4294967296)平面地址空间,没有段,没有选择符,没有near和far指针,没有near和far函数调用,也没有内存 Read More
posted @ 2021-11-25 19:17 _KikyoBK Views(274) Comments(0) Diggs(0) Edit
转载:https://www.cnblogs.com/renjiashuo/p/6913668.html 在c/c++实际问题的编程中,我们经常会用到日期与时间的格式,在算法运行中,通常将时间转化为int来进行计算,而处理输入输出的时候,日期时间的格式却是五花八门,以各种标点空格相连或者不加标点。 Read More
posted @ 2021-11-16 10:34 _KikyoBK Views(3565) Comments(0) Diggs(0) Edit
场景:定义了一个结构体A,然后std::map<A, B> m; 报错:error c2678:二进制"<",没有找到接受"const A"类型的左操作数运算符(或没有可接受的转换) 原因:重载 "<",参数列表后面没有加const 解决:参数列表后面加const bool operator < ( Read More
posted @ 2021-10-27 15:36 _KikyoBK Views(115) Comments(0) Diggs(0) Edit
转载:https://blog.csdn.net/qq_43199836/article/details/82937844 出现这种错误有两种可能: 1.代码里重新定义了dict,比如 dict= {…},这时调用的是代码里定义的dict而不是python内置类型 2.取字典内容时用了()而不是[] Read More
posted @ 2021-10-26 10:25 _KikyoBK Views(338) Comments(0) Diggs(0) Edit
转载:https://www.cctry.com/thread-78882-1-1.html 发送方: 1 CString str="这是我要发送的给另外一个进程字符串。"; 2 COPYDATASTRUCT myCopyDATA; 3 myCopyDATA.cbData=str.GetLength Read More
posted @ 2021-10-26 10:23 _KikyoBK Views(329) Comments(0) Diggs(0) Edit
可能是缺少依赖库。release版去掉依赖库,改为MT编译 Read More
posted @ 2021-07-06 16:21 _KikyoBK Views(40) Comments(0) Diggs(0) Edit
上一页 1 2 3 4 5 6 ··· 17 下一页