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

📄 topwindow.h

📁 c+++ game uploading now
💻 H
字号:
/**
 @file
 Interface of the TopWindow class
*/
#if !defined _TOPWINDOW_H_
#define _TOPWINDOW_H_
#include "lib/ModelessDialog.h"

/**
 TopWindow class, implements the top window (dialog) class
*/
class TopWindow: public Win::ModelessDialog
{
public:
    /**
     @param hInst handle to the application instance
    */
    TopWindow(HINSTANCE hInst);

private:
    /**
     procedure to handle the application "window||dialog"
    */
    static BOOL CALLBACK AppDialogProc(HWND hwnd,
                                       UINT message,
                                       WPARAM wParam,
                                       LPARAM lParam);
};    
#endif //_TOPWINDOW_H_

⌨️ 快捷键说明

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