我正在尝试在我的应用程序上使用 MS Windows API 代码包。
string docRef = @"adocument.docx";
var shellFile = Microsoft.WindowsAPICodePack.Shell.ShellFile.FromFilePath(docRef);
它在 Windows 7 上运行良好,而在 Windows XP(安装了 .NET 3.5)中引发错误:“System.EntryPointNotFoundException:无法在 DLL 'shell32.dll' 中找到名为 'SHCreateItemFromParsingName' 的入口点。”
您能否告诉我在 Windows XP 上启动 MS WACP 需要做什么?
提前非常感谢!