我希望有一个简单的文件对话框,用户可以在其中选择如下所示的文件夹。
在使用当前Visual Studio 2017的Windows 10构建上执行以下代码段时,我遇到了一个奇怪的问题。我做什么
相反,当我单击“选择文件夹”时,我希望对话框首先将焦点从新文件夹中移出,然后再次单击以实际选择文件夹。
奇怪的是,在我测试该代码的所有Windows 10系统上都不会发生这种情况。有时我无法重现该问题。
有人遇到同样的问题,也许可以解决吗?
#include <shobjidl.h>
#include <windows.h>
void winOpenFileDialog ()
{
HRESULT hr = CoInitializeEx (NULL, COINIT_APARTMENTTHREADED | COINIT_DISABLE_OLE1DDE);
if (SUCCEEDED (hr))
{
IFileOpenDialog* pFileOpen;
// Create the FileOpenDialog object.
hr = CoCreateInstance (CLSID_FileOpenDialog, NULL, CLSCTX_ALL, IID_IFileOpenDialog,
reinterpret_cast<void**> (&pFileOpen));
if (SUCCEEDED (hr))
{
pFileOpen->SetOptions (FOS_PICKFOLDERS);
// Show the Open dialog box.
hr = pFileOpen->Show (NULL);
FILEOPENDIALOGOPTIONS opt;
pFileOpen->GetOptions (&opt);
// Get the file name from the dialog box.
if (SUCCEEDED (hr))
{
IShellItem* pItem;
hr = pFileOpen->GetResult (&pItem);
if (SUCCEEDED (hr))
{
PWSTR pszFilePath;
hr = pItem->GetDisplayName (SIGDN_FILESYSPATH, &pszFilePath);
// Display the file name to the user.
if (SUCCEEDED (hr))
{
MessageBox (NULL, pszFilePath, L"File Path", MB_OK);
CoTaskMemFree (pszFilePath);
}
pItem->Release ();
}
}
pFileOpen->Release ();
}
CoUninitialize ();
}
}