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

📄 settingsdialog.cpp

📁 这是MFC Windows程序设计(第2版)
💻 CPP
字号:
// SettingsDialog.cpp : implementation file
//

#include "stdafx.h"
#include "GridDemo.h"
#include "MyToolTipCtrl.h"
#include "SettingsDialog.h"

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

/////////////////////////////////////////////////////////////////////////////
// CSettingsDialog dialog

CSettingsDialog::CSettingsDialog(CWnd* pParent /*=NULL*/)
	: CDialog(CSettingsDialog::IDD, pParent)
{
	//{{AFX_DATA_INIT(CSettingsDialog)
	m_cx = 0;
	m_cy = 0;
	//}}AFX_DATA_INIT
}

void CSettingsDialog::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CSettingsDialog)
	DDX_Control(pDX, IDC_SPINVERT, m_wndSpinVert);
	DDX_Control(pDX, IDC_SPINHORZ, m_wndSpinHorz);
	DDX_Control(pDX, IDC_SLIDER, m_wndSlider);
	DDX_Text(pDX, IDC_EDITHORZ, m_cx);
	DDX_Text(pDX, IDC_EDITVERT, m_cy);
	//}}AFX_DATA_MAP
}

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

/////////////////////////////////////////////////////////////////////////////
// CSettingsDialog message handlers

BOOL CSettingsDialog::OnInitDialog() 
{
	CDialog::OnInitDialog();

	//
	// Initialize the slider control.
	//
	m_wndSlider.SetRange (0, 8);	
	m_wndSlider.SetPos (m_nWeight);

	//
	// Initialize the spin button controls.
	//
	m_wndSpinHorz.SetRange (2, 64);
	m_wndSpinVert.SetRange (2, 64);

	//
	// Create and initialize a tooltip control.
	//
    m_ctlTT.Create (this);
    m_ctlTT.AddWindowTool (GetDlgItem (IDC_SLIDER),
        MAKEINTRESOURCE (IDS_SLIDER));
    m_ctlTT.AddWindowTool (GetDlgItem (IDC_EDITHORZ),
        MAKEINTRESOURCE (IDS_EDITHORZ));
    m_ctlTT.AddWindowTool (GetDlgItem (IDC_EDITVERT),
        MAKEINTRESOURCE (IDS_EDITVERT));
	return TRUE;
}

void CSettingsDialog::OnOK() 
{
	//
	// Read the slider control's thumb position 
        // before dismissing the dialog.
	//
	m_nWeight = m_wndSlider.GetPos ();
	CDialog::OnOK();
}

⌨️ 快捷键说明

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