Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 MFC 的对话框应用程序中有一个编辑框。我使用这个组件来选择路径。我可以编辑路径。我可以在此控件中提供建议功能吗?那就是当用户编辑路径时,组件根据输入为用户提供可能的建议?或者我可以使用 ComboBox 控件实现此功能吗?
谢谢
在您的 OnInitDialog() 中,m_pathEdit 是您的 CEdit 控件:
SHAutoComplete(m_pathEdit.m_hWnd, SHACF_DEFAULT);
在调用对话框的 DoModal() 之前:
CoInitialize(NULL);
从 DoModal() 返回后:
CoUninitialize();
那么您的编辑控件会自动完成 URL 和文件路径。