⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 trenddlg.cpp

📁 Displaying large amounts of technical data in a chart can be a frustrating task. You can find tons o
💻 CPP
字号:
// TrendDlg.cpp: Implementierungsdatei
//

#include "stdafx.h"
#include "XGraph.h"
#include "TrendDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// Dialogfeld CTrendDlg 


CTrendDlg::CTrendDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CTrendDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CTrendDlg)
	m_nSize = 0;
	m_nDegree = 5;
	//}}AFX_DATA_INIT
}


void CTrendDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CTrendDlg)
	DDX_Control(pDX, IDC_SPIN2, m_Degree);
	DDX_Control(pDX, IDC_SPIN1, m_Spin);
	DDX_Text(pDX, IDC_EDIT1, m_nSize);
	DDV_MinMaxUInt(pDX, m_nSize, 0, 100000000);
	DDX_Text(pDX, IDC_EDIT2, m_nDegree);
	DDV_MinMaxUInt(pDX, m_nDegree, 2, 20);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CTrendDlg, CDialog)
	//{{AFX_MSG_MAP(CTrendDlg)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// Behandlungsroutinen f黵 Nachrichten CTrendDlg 

BOOL CTrendDlg::OnInitDialog() 
{
	CDialog::OnInitDialog();
	
	m_Spin.SetRange32(0,100000000);
	m_Degree.SetRange(2,20);
	
	return TRUE;  // return TRUE unless you set the focus to a control
	              // EXCEPTION: OCX-Eigenschaftenseiten sollten FALSE zur點kgeben
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -