pfwininitdialog.cpp

来自「PowerFish is a class library, intended t」· C++ 代码 · 共 56 行

CPP
56
字号
///////////////////////////////////////////////////////////////////////////////////////////////////// PowerFish///////////////////////////////////////////////////////////////////////////////////////////////////// copyright (c) Camilla Berglund (camilla@uds.se)// this source code is licensed under the GNU GPL// see http://www.gnu.org/copyleft/gpl.html for details///////////////////////////////////////////////////////////////////////////////////////////////////#define PFBASE_LAZY#include <PfBase.h>#include <windows.h>#include <PfWinDialog.h>#include "PfWinInitDialog.h"#include "resource.h"///////////////////////////////////////////////////////////////////////////////////////////////////// PfWinInitDialog constructors -------------------------------------------------------------------PfWinInitDialog::PfWinInitDialog(void):	PfWinDialog(IDD_INIT_DIALOG){}PfWinInitDialog::~PfWinInitDialog(void){}// PfWinInitDialog accessors ----------------------------------------------------------------------void PfWinInitDialog::SetMessage(const char* szMessage){	if (!IsCreated())		return;	SetWindowText(GetDlgItem(IDC_INIT_STATICMESSAGE), szMessage);}// PfWinInitDialog event handlers -----------------------------------------------------------------bool PfWinInitDialog::OnOK(void){	return false;}bool PfWinInitDialog::OnCancel(void){	return false;}///////////////////////////////////////////////////////////////////////////////////////////////////

⌨️ 快捷键说明

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