textproperties.cpp

来自「此源程序是一个简单的绘图程序,你通过他可以画一些简单的图形,是一款简单的画图程序」· C++ 代码 · 共 56 行

CPP
56
字号
// TextProperties.cpp : implementation file
//

#include "stdafx.h"
#include "MyDraw.h"
#include "TextProperties.h"

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

/////////////////////////////////////////////////////////////////////////////
// CTextProperties dialog


CTextProperties::CTextProperties(CWnd* pParent /*=NULL*/)
	: CDialog(CTextProperties::IDD, pParent)
{
	//{{AFX_DATA_INIT(CTextProperties)
	m_Text = _T("");
	m_BkMode = FALSE;
	//}}AFX_DATA_INIT
}


void CTextProperties::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CTextProperties)
	DDX_Text(pDX, IDC_EDIT_TEXT, m_Text);
	DDX_Check(pDX, IDC_CHECK_BKMODE, m_BkMode);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CTextProperties, CDialog)
	//{{AFX_MSG_MAP(CTextProperties)
	ON_BN_CLICKED(IDC_BUTTON_FONT, OnButtonFont)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CTextProperties message handlers

void CTextProperties::OnButtonFont() 
{
	// TODO: Add your control notification handler code here
	CFontDialog dlg(&m_Font);
	if(dlg.DoModal()==IDOK)
	{
		dlg.GetCurrentFont(&m_Font);
		m_TextColor=dlg.m_cf.rgbColors;
	}
}

⌨️ 快捷键说明

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