CongraduationDlg.cpp
上传用户:baina_li
上传日期:2013-03-23
资源大小:960k
文件大小:2k
源码类别:

射击游戏

开发平台:

Visual C++

  1. // CongraduationDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include <mmsystem.h>
  5. #include "fighter.h"
  6. #include "CongraduationDlg.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CCongraduationDlg dialog
  14. CCongraduationDlg::CCongraduationDlg(CWnd* pParent /*=NULL*/)
  15. : CDialog(CCongraduationDlg::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(CCongraduationDlg)
  18. m_strPercentage = _T("");
  19. m_strName = _T("");
  20. m_nBomb = 0;
  21. //}}AFX_DATA_INIT
  22. m_bSound = TRUE;
  23. }
  24. void CCongraduationDlg::DoDataExchange(CDataExchange* pDX)
  25. {
  26. CDialog::DoDataExchange(pDX);
  27. //{{AFX_DATA_MAP(CCongraduationDlg)
  28. DDX_Text(pDX, IDC_PERCENTAGE, m_strPercentage);
  29. DDX_Text(pDX, IDC_NAME, m_strName);
  30. DDX_Text(pDX, IDC_BOMB, m_nBomb);
  31. DDV_MinMaxInt(pDX, m_nBomb, 0, 100);
  32. //}}AFX_DATA_MAP
  33. }
  34. BEGIN_MESSAGE_MAP(CCongraduationDlg, CDialog)
  35. //{{AFX_MSG_MAP(CCongraduationDlg)
  36. //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CCongraduationDlg message handlers
  40. BOOL CCongraduationDlg::OnInitDialog() 
  41. {
  42. CDialog::OnInitDialog();
  43. // TODO: Add extra initialization here
  44. if(m_bSound)PlaySound("win.wav", NULL, SND_FILENAME|SND_ASYNC|SND_NODEFAULT);
  45. GetDlgItem(IDC_NAME)->SetFocus();
  46. return FALSE;  // return TRUE unless you set the focus to a control
  47.               // EXCEPTION: OCX Property Pages should return FALSE
  48. }