PageStatistics.cpp 768 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // PageStatistics.cpp : 实现文件
  2. //
  3. #include "stdafx.h"
  4. #include "OGCAssistTool.h"
  5. #include "PageStatistics.h"
  6. // CPageStatistics 对话框
  7. IMPLEMENT_DYNAMIC(CPageStatistics, CDialogEx)
  8. CPageStatistics::CPageStatistics(CWnd* pParent /*=NULL*/)
  9. : CDialogEx(CPageStatistics::IDD, pParent)
  10. {
  11. }
  12. CPageStatistics::~CPageStatistics()
  13. {
  14. }
  15. void CPageStatistics::DoDataExchange(CDataExchange* pDX)
  16. {
  17. CDialogEx::DoDataExchange(pDX);
  18. }
  19. BEGIN_MESSAGE_MAP(CPageStatistics, CDialogEx)
  20. END_MESSAGE_MAP()
  21. // CDlgDebug 消息处理程序
  22. BOOL CPageStatistics::OnInitDialog()
  23. {
  24. CDialogEx::OnInitDialog();
  25. // TODO: 在此添加额外的初始化
  26. SetBackgroundColor(RGB(255,255,255));
  27. return TRUE; // return TRUE unless you set the focus to a control
  28. // 异常: OCX 属性页应返回 FALSE
  29. }