📄 seriesoption.cpp
字号:
// seriesoption.cpp : implementation file//#include "stdafx.h"#include "水箱实验.h"#include "seriesoption.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif/////////////////////////////////////////////////////////////////////////////// Cseriesoption dialogCseriesoption::Cseriesoption(CWnd* pParent /*=NULL*/) : CDialog(Cseriesoption::IDD, pParent){ //{{AFX_DATA_INIT(Cseriesoption) m_seriesoption = -1; //}}AFX_DATA_INIT}void Cseriesoption::DoDataExchange(CDataExchange* pDX){ CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(Cseriesoption) DDX_Radio(pDX, IDC_DOUBBLECONTROL, m_seriesoption); //}}AFX_DATA_MAP}BEGIN_MESSAGE_MAP(Cseriesoption, CDialog) //{{AFX_MSG_MAP(Cseriesoption) ON_BN_CLICKED(IDC_DOUBBLECONTROL, OnDoubblecontrol) ON_BN_CLICKED(IDC_SINGLECONTROL, OnSinglecontrol) //}}AFX_MSG_MAPEND_MESSAGE_MAP()/////////////////////////////////////////////////////////////////////////////// Cseriesoption message handlersvoid Cseriesoption::OnDoubblecontrol() { // TODO: Add your control notification handler code here if(IsDlgButtonChecked(IDC_DOUBBLECONTROL)) { m_seriesoption=doubblecontrol; } }void Cseriesoption::OnSinglecontrol() { // TODO: Add your control notification handler code here if(IsDlgButtonChecked(IDC_SINGLECONTROL)) { m_seriesoption=singlecontrol; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -