PropertyDlg.cpp
上传用户:szklck
上传日期:2007-01-22
资源大小:925k
文件大小:1k
源码类别:

图形图像处理

开发平台:

Visual C++

  1. // PropertyDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "视频编解码器.h"
  5. #include "PropertyDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CPropertyDlg
  13. IMPLEMENT_DYNAMIC(CPropertyDlg, CPropertySheet)
  14. CPropertyDlg::CPropertyDlg(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
  15. :CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
  16. {
  17.    AddPage(&encodeDlg);
  18.    AddPage(&m_page1);
  19.    AddPage(&m_page2);
  20. }
  21. CPropertyDlg::CPropertyDlg(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
  22. :CPropertySheet(pszCaption, pParentWnd, iSelectPage)
  23. {
  24.    AddPage(&encodeDlg);
  25.    AddPage(&m_page1);
  26.    AddPage(&m_page2);
  27. }
  28. CPropertyDlg::~CPropertyDlg()
  29. {
  30. }
  31. BEGIN_MESSAGE_MAP(CPropertyDlg, CPropertySheet)
  32. //{{AFX_MSG_MAP(CPropertyDlg)
  33. // NOTE - the ClassWizard will add and remove mapping macros here.
  34. //}}AFX_MSG_MAP
  35. END_MESSAGE_MAP()
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CPropertyDlg message handlers