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

📄 pfwininitdialog.cpp

📁 PowerFish is a class library, intended to provide a broad functionality base for any application. Al
💻 CPP
字号:
///////////////////////////////////////////////////////////////////////////////////////////////////// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -