📄 statuswindow.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -