dlglanguage.cpp

来自「485通讯接口模块的编程应用」· C++ 代码 · 共 67 行

CPP
67
字号
// DlgLanguage.cpp : implementation file
//

#include "stdafx.h"
#include "DK20DieselizeDynamotor.h"
#include "DlgLanguage.h"

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

/////////////////////////////////////////////////////////////////////////////
// CDlgLanguage dialog
extern BOOL bChinese;

CDlgLanguage::CDlgLanguage(CWnd* pParent /*=NULL*/)
	: CDialog(CDlgLanguage::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDlgLanguage)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


void CDlgLanguage::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDlgLanguage)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CDlgLanguage, CDialog)
	//{{AFX_MSG_MAP(CDlgLanguage)
	ON_BN_CLICKED(IDC_BUTTON_CHINESE, OnButtonChinese)
	ON_BN_CLICKED(IDC_BUTTON_ENGLISH, OnButtonEnglish)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDlgLanguage message handlers

BOOL CDlgLanguage::OnInitDialog() 
{
	CDialog::OnInitDialog();
	
	CenterWindow(GetDesktopWindow() )  ;
	
	return TRUE;  // return TRUE unless you set the focus to a control
	              // EXCEPTION: OCX Property Pages should return FALSE
}

void CDlgLanguage::OnButtonChinese() 
{
	bChinese=true;
	CDialog::OnOK();
}

void CDlgLanguage::OnButtonEnglish() 
{
	bChinese=false;
	CDialog::OnOK();
}

⌨️ 快捷键说明

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