statuswindow.h
来自「通过手机蓝牙控制个人电脑上的幻灯片的播放」· C头文件 代码 · 共 17 行
H
17 行
// StatusWindow.h
//
// Simple status window for displaying WinLogon's status messages
//
#pragma once
class StatusWindow {
public:
StatusWindow(HDESK hdesk, const wchar_t* title, const wchar_t* message);
~StatusWindow();
private:
static INT_PTR CALLBACK _dialogProc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp);
HDESK _hdesk;
HWND _hwnd;
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?