📄 helputils.cpp
字号:
// HelpUtils.cpp
#include "StdAfx.h"
#include <HtmlHelp.h>
#include "Common/StringConvert.h"
#include "HelpUtils.h"
#include "ProgramLocation.h"
static LPCWSTR kHelpFileName = L"7-zip.chm::/";
void ShowHelpWindow(HWND hwnd, LPCWSTR topicFile)
{
UString path;
if (!::GetProgramFolderPath(path))
return;
path += kHelpFileName;
path += topicFile;
HtmlHelp(hwnd, GetSystemString(path), HH_DISPLAY_TOPIC, NULL);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -