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

📄 aboutdialog.h

📁 c+++ game uploading now
💻 H
字号:
/**
 @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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -