aboutdialog.h
来自「c+++ game uploading now」· C头文件 代码 · 共 40 行
H
40 行
/**
@file
Interface of AboutDialog class.
*/
#if !defined _ABOUTDIALOG_H_
#define _ABOUTDIALOG_H_
#include "lib/Dialog.h"
/**
Implements the about dialog box.
*/
class AboutDialog: public Win::Dialog
{
public:
/**
Constructor
@param appInstance is a handle to the application instance
@param parent is the handle of the parent window
*/
AboutDialog(HINSTANCE appInstance, HWND parent);
private:
/**
the text of the about box, perhaps this should be
read from a file.
*/
static char const * const CopyrightMessage;
/**
this method is automatically called upon initialization with the
dialog handle transmited on the parameter hwnd
@param hwnd a handle to the dialog window.
@see Win::Dialog
*/
bool OnInitDialog(HWND hwnd);
};
#endif //_ABOUTDIALOG_H_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?