WriteTextDialog.cpp
上传用户:y440e3
上传日期:2010-03-08
资源大小:200k
文件大小:1k
- // WriteTextDialog.cpp : implementation file
- //
- #include "stdafx.h"
- #include "draw.h"
- #include "WriteTextDialog.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // WriteTextDialog dialog
- WriteTextDialog::WriteTextDialog(CWnd* pParent /*=NULL*/)
- : CDialog(WriteTextDialog::IDD, pParent)
- {
- //{{AFX_DATA_INIT(WriteTextDialog)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
- void WriteTextDialog::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(WriteTextDialog)
- // NOTE: the ClassWizard will add DDX and DDV calls here
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(WriteTextDialog, CDialog)
- //{{AFX_MSG_MAP(WriteTextDialog)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // WriteTextDialog message handlers
- void WriteTextDialog::OnOK()
- {
- // TODO: Add extra validation here
-
- CDialog::OnOK();
- }