加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
SettingDlg.cpp 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
杨浩 提交于 2022-02-22 08:17 . 项目文件2
// SettingDlg.cpp : implementation file
//
#include "stdafx.h"
#include ".h"
#include "SettingDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CSettingDlg dialog
CSettingDlg::CSettingDlg(CWnd* pParent /*=NULL*/)
: CDialog(CSettingDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CSettingDlg)
// NOTE: the ClassWizard will add member initialization here
m_type1 = 1;
m_type2 = 0;
//}}AFX_DATA_INIT
}
void CSettingDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CSettingDlg)
// NOTE: the ClassWizard will add DDX and DDV calls here
DDX_Radio(pDX, IDC_RADIO1, m_type1);
DDX_Radio(pDX, IDC_BLACK, m_type2);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CSettingDlg, CDialog)
//{{AFX_MSG_MAP(CSettingDlg)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CSettingDlg message handlers
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化