我正在以 UNICODE 模式构建我的应用程序,并希望将 CString 转换为 LPWSTR。基本上我有一个包含 CString 作为成员变量的类,例如,
class MyClass
{
CString TreeNodeName;
}
我想使用以下结构将项目插入树控件,
TVINSERTSTRUCT tvInsert;
tvInsert.hParent = ParentNode;
tvInsert.hInsertAfter = NULL;
tvInsert.item.mask = TVIF_TEXT;
tvInsert.item.lParam = (long)ClassObject;
tvInsert.item.pszText = ClassObject->TreeNodeName; //Need this conversion
请帮我如何转换CString TreeNodeName; 到tvInsert.item.pszText?