1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #include "stdafx.h"
- #include "ylgl.h"
- #include "PropPage1.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- PropPage1::PropPage1(CWnd* pParent )
- : CDialog(PropPage1::IDD, pParent)
- {
-
-
-
- }
- void PropPage1::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
-
-
-
- }
- BEGIN_MESSAGE_MAP(PropPage1, CDialog)
-
-
- END_MESSAGE_MAP()
- void PropPage1::OnOK()
- {
-
- }
- void PropPage1::OnCancel()
- {
-
- }
- BOOL PropPage1::OnInitDialog()
- {
- CDialog::OnInitDialog();
-
-
-
- return TRUE;
-
- }
|