WTL下使用CString

WTL和ATL都有CString,如果使用DDX交换数据,提示CString转换错误,修改定义设置:

  
  
  
  
  1. //use CString 
  2. #undef _ATL_TMP_NO_CSTRING 
  3. #include <atlmisc.h> 
  4. #define _WTL_USE_CSTRING 
  5. #include <atlddx.h> 

 

你可能感兴趣的:(CString,wtl)