大约有 1,400 项符合查询结果(耗时:0.0070秒) [XML]

https://www.tsingfun.com/it/cpp/1918.html 

CListCtrl 如何设置单元格颜色? - C/C++ - 清泛网 - 专注C/C++及内核技术

...trl控件的OwerDraw属性为true,然后使用GDI画图函数进行各种定义绘制。 拓展的类为CColorListCtrl,必需引入的代码:ColorListCtrl.zip(4个文件) 将源码引入工程,#include "ColorListCtrl.h",将CListCtrl换成CColorListCtrl,构造函数中指定CCo...
https://www.tsingfun.com/it/cpp/1962.html 

CListCtrl 行高设置,定义行高 - C/C++ - 清泛网 - 专注C/C++及内核技术

CListCtrl 行高设置,定义行高先看效果:主要步骤及代码剖析:MyListCtrl.h#pragma onceclass CMyListCtrl : public CListCtrl{public:CMyListCtrl(void);~CMyListC...先看效果: 主要步骤及代码剖析: MyListCtrl.h #pragma once class CMyListCtrl : public CList...
https://www.tsingfun.com/it/cpp/2048.html 

vc第三方界面库BCGControlBar与Xtreme Toolkit对比 - C/C++ - 清泛网 - 专注C/C++及内核技术

vc第三方界面库BCGControlBar与Xtreme Toolkit对比原文来http: www.webui8.com xinwen 557vc第三方界面库BCGControlBar与Xtreme Toolkit对比BCGControlBar简介BCGControlBar专业版(BCGCo...原文来:http://www.webui8.com/xinwen/557 BCGControlBar简介 BCGControlBar专业版...
https://www.tsingfun.com/it/cpp/2080.html 

什么是 Ringbuffer ? - C/C++ - 清泛网 - 专注C/C++及内核技术

...一部分–如果你等不急我写blog来说明它们,那么可以行检出Disruptor项目)。 它为什么如此优秀? 之所以ringbuffer采用这种数据结构,是因为它在可靠消息传递方面有很好的性能。这就够了,不过它还有一些其他的优点。 ...
https://www.tsingfun.com/it/cpp/2106.html 

error C2280: \'std::mutex::mutex(const std::mutex &)\' : attempting to...

...含std::mutex的类的拷贝构造函数和赋值操作符重载函数,定义或者标记为delete. 例如: class Account { public: Account(int id_, double ba = 0.0) :id(id_), balance(ba){} void withdraw(double amount){ balance -= amount; } void deposit(double amount){ ba...
https://www.tsingfun.com/it/cpp/2146.html 

__declspec(dllexport) 导出符号解决链接失败问题 - C/C++ - 清泛网 - 专注C/C++及内核技术

...加上了 -fvisibility=hidden 指定不导出,然后使用上面的宏,定义导出,与Windows就类似了。 特别注意: 以上这个导出、导入的方式仅针对动态库,而静态库无需任何申明,宏全部替换成空即可。 __declspec dllexport
https://www.tsingfun.com/it/cpp/2148.html 

MFC中重载的DoDataExchange函数为何不被调用 - C/C++ - 清泛网 - 专注C/C++及内核技术

...oDataExchange函数,至此被绑定的变量才得以初始化。 所以定义的窗口类如果要绑定控件与变量,一定要重载虚函数virtual void OnInitialUpdate(),并在里面调用基类的OnInitialUpdate方法。 DoDataExchange OnInitialUpdate
https://www.tsingfun.com/it/cpp/2154.html 

MFC SetCursor设置手型鼠标光标 - C/C++ - 清泛网 - 专注C/C++及内核技术

...东西 IDC_UPARROW 垂直箭头 IDC_WAIT 沙漏 IDC_HAND 手型 定义光标: SetCursor(LoadCursor(AfxGetInstanceHandle(), MAKEINTRESOURCE(IDC_MYCURSOR))); SetCursor 手型 鼠标光标
https://www.tsingfun.com/it/cpp/2496.html 

hidden symbol ... is referenced by DSO 剖析 - C/C++ - 清泛网 - 专注C/C++及内核技术

...加上了 -fvisibility=hidden 指定不导出,然后使用上面的宏,定义导出,与Windows就类似了。 dllexport visibility
https://www.tsingfun.com/it/op... 

实战做项目如何选择开源许可协议(二)- 开放代码 - 开源 & Github - 清泛...

...方有个 create a new project。 点击创建工程后,可以选择己工程的开源协议。预定义协议支持不是太多,主要有常见的BSD、GPL、MIT、APACHE、ECLIPSE、MPL。没有包含的可以选择other open source 填写。 2、github, 这个后期之秀,由...