在 MFC(Microsoft Foundation Classes)中,没有 CSettingsStore 类,也没有 DeleteKey 方法。可能存在一些误解或者混淆。

如果你的目标是删除注册表中的某个键,你可能会使用 CRegKey 类。以下是一个简单的示例:
#include <afxwin.h>

CRegKey regKey;
if (regKey.Open(HKEY_CURRENT_USER, _T("Software\\YourApp\\YourKey"), KEY_READ | KEY_WRITE) == ERROR_SUCCESS) {
    // 删除键
    regKey.RecurseDeleteKey(_T("YourSubKey"));
    regKey.Close();
}

这个示例假设你要删除注册表中 HKEY_CURRENT_USER\Software\YourApp\YourKey\YourSubKey。请根据你的实际情况进行调整。




转载请注明出处:http://www.pingtaimeng.com/article/detail/22300/MFC/CSettingsStore