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

📄 列表8.8.txt

📁 klinux书籍的配套光盘。可以学习学习。
💻 TXT
字号:
【列表8.8】修改后的ShutDown 和 SoftShutDown 过程。
{
  The HelpManager calls SoftShutDown to shut down all visible portions
  of the Viewer without actually shutting down the Viewer.
}
procedure TSimpleHelpViewer.SoftShutDown;
begin
   frmTOC.ShutDown;
   frmHelpTopic. ShutDown;
end;
{
   The HelpManager calls ShutDown to shut down the Viewer.
   Since the HelpManager ordered the Viewer to shut down, we don't need
   to notify it.
}
procedure TSimpleHelpViewer.ShutDown;
begin
   SoftShutDown;
   if Assigned(FHelpManager) then
      FHelpManager := nil;
end;

⌨️ 快捷键说明

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