CWinApp::EnableShellOpen

并双击文件从Windows文件管理器的内部时,调用此功能,通常从您的 InitInstance 重写,使您的应用程序的用户打开数据文件。

void EnableShellOpen( );

备注

与此功能结合调用 RegisterShellFileTypes 成员函数或提供.REG文件来对项目注册的应用程序文件类型。

示例

// The following code fragment is from CMyApp::InitInstance. 
// CMyApp is a CWinApp-derived class. 

// enable file manager drag/drop and DDE Execute open
EnableShellOpen();
RegisterShellFileTypes();

要求

Header: afxwin.h

请参见

参考

CWinApp Class

层次结构图

CWinApp::OnDDECommand

CWinApp::RegisterShellFileTypes