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

射击游戏

开发平台:

Visual C++

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