次の方法で共有


CWinApp::OnFileOpen

更新 : 2007 年 11 月

ID_FILE_OPEN コマンドを実装します。

afx_msg void OnFileOpen( );

解説

このメンバ関数を有効にするには、CWinApp クラスのメッセージ マップに、ON_COMMAND( ID_FILE_OPEN, OnFileOpen ) ステートメントを追加する必要があります。有効である場合、この関数は [ファイル] メニューの [開く] を実行します。

既定の動作や、このメンバ関数のオーバーライドの方法については、「テクニカル ノート 22: 標準コマンドの実装」を参照してください。

使用例

// The following message map, produced by the Application Wizard, binds 
// the File New, Open, and Print Setup menu commands to default
// framework implementations of these commands.
BEGIN_MESSAGE_MAP(CStdApp, CWinApp)
   // Standard file based document commands
   ON_COMMAND(ID_FILE_NEW, &CWinApp::OnFileNew)
   ON_COMMAND(ID_FILE_OPEN, &CWinApp::OnFileOpen)
   // Standard print setup command
   ON_COMMAND(ID_FILE_PRINT_SETUP, &CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()
// The following message map illustrates how to rebind the
// File New, Open and Print Setup menu commands to handlers that
// you implement in your CWinApp-derived class.  
// Note, you can name the handler CCustomApp::OnFileNew instead of
// CCustomApp::OnMyFileNew, and likewise for the other handlers, if desired.
BEGIN_MESSAGE_MAP(CCustomApp, CWinApp)
   ON_COMMAND(ID_FILE_NEW, &CCustomApp::OnMyFileNew)
   ON_COMMAND(ID_FILE_OPEN, &CCustomApp::OnMyFileOpen)
   ON_COMMAND(ID_FILE_PRINT_SETUP, &CCustomApp::OnMyFilePrintSetup)
END_MESSAGE_MAP()

必要条件

ヘッダー : afxwin.h

参照

参照

CWinApp クラス

階層図

CWinApp::OnFileNew

その他の技術情報

CWinApp のメンバ