ModifyDlg.cpp
资源名称:福利彩票号码统计.rar [点击查看]
上传用户:dinghaosmt
上传日期:2013-03-22
资源大小:110k
文件大小:2k
源码类别:
射击游戏
开发平台:
Visual C++
- // ModifyDlg.cpp : implementation file
- //
- #include "stdafx.h"
- #include "福利彩票号码统计.h"
- #include "ModifyDlg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CModifyDlg dialog
- CModifyDlg::CModifyDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CModifyDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CModifyDlg)
- m_Modify_ID = 0;
- //}}AFX_DATA_INIT
- }
- void CModifyDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CModifyDlg)
- DDX_Text(pDX, IDC_EDIT1, m_Modify_ID);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CModifyDlg, CDialog)
- //{{AFX_MSG_MAP(CModifyDlg)
- ON_BN_CLICKED(IDC_GIVEUP_BUTTON, OnGiveupButton)
- ON_BN_CLICKED(IDC_SUMIT_BUTTON, OnSumitButton)
- ON_WM_CTLCOLOR()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CModifyDlg message handlers
- void CModifyDlg::OnGiveupButton()
- {
- OnCancel();
- }
- void CModifyDlg::OnSumitButton()
- {
- OnOK();
- }
- HBRUSH CModifyDlg::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor)
- {
- pDC->SetBkMode(TRANSPARENT);
- pDC->SetTextColor(RGB(0,0,128));
- return m_hbrush;
- }
- BOOL CModifyDlg::OnInitDialog()
- {
- CDialog::OnInitDialog();
- m_hbrush=CreateSolidBrush(RGB(128,0,128));
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
- }