PasswordDlg.cpp
上传用户:dinghaosmt
上传日期:2013-03-22
资源大小:110k
文件大小:2k
源码类别:

射击游戏

开发平台:

Visual C++

  1. // PasswordDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "福利彩票号码统计.h"
  5. #include "PasswordDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CPasswordDlg dialog
  13. CPasswordDlg::CPasswordDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CPasswordDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CPasswordDlg)
  17. m_Password = _T("");
  18. //}}AFX_DATA_INIT
  19. }
  20. void CPasswordDlg::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CPasswordDlg)
  24. DDX_Text(pDX, IDC_EDIT1, m_Password);
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(CPasswordDlg, CDialog)
  28. //{{AFX_MSG_MAP(CPasswordDlg)
  29. ON_BN_CLICKED(IDC_PASSWORD_BUTTON, OnPasswordButton)
  30. ON_WM_CTLCOLOR()
  31. ON_BN_CLICKED(IDC_GIVEUP_BUTTON, OnGiveupButton)
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CPasswordDlg message handlers
  36. void CPasswordDlg::OnPasswordButton() 
  37. {
  38. OnOK();
  39. }
  40. HBRUSH CPasswordDlg::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor) 
  41. {
  42. pDC->SetBkMode(TRANSPARENT);
  43.                
  44.    pDC->SetTextColor(RGB(0,0,128));
  45.    return m_hbrush;
  46. }
  47. BOOL CPasswordDlg::OnInitDialog() 
  48. {
  49. CDialog::OnInitDialog();
  50. m_hbrush=CreateSolidBrush(RGB(128,255,128));
  51. return TRUE;  // return TRUE unless you set the focus to a control
  52.               // EXCEPTION: OCX Property Pages should return FALSE
  53. }
  54. void CPasswordDlg::OnGiveupButton() 
  55. {
  56. OnCancel();
  57. }