'operate_delete.htm'; break; case 'operate_move': $pre .= $default_pre .= 'operate_move.htm'; break; case '404': $pre .= $default_pre .= '404.htm'; break; case 'read_404': $pre .= $default_pre .= 'read_404.htm'; break; case 'list_404': $pre .= $default_pre .= 'list_404.htm'; break; default: $pre .= $default_pre .= theme_mode_pre(); break; } if ($config['theme']) { $conffile = APP_PATH . 'view/template/' . $config['theme'] . '/conf.json'; $json = is_file($conffile) ? xn_json_decode(file_get_contents($conffile)) : array(); } !empty($json['installed']) and $path_file = APP_PATH . 'view/template/' . $config['theme'] . '/htm/' . ($id ? $id . '_' : '') . $pre; (empty($path_file) || !is_file($path_file)) and $path_file = APP_PATH . 'view/template/' . $config['theme'] . '/htm/' . $pre; if (!empty($config['theme_child']) && is_array($config['theme_child'])) { foreach ($config['theme_child'] as $theme) { if (empty($theme) || is_array($theme)) continue; $path_file = APP_PATH . 'view/template/' . $theme . '/htm/' . ($id ? $id . '_' : '') . $pre; !is_file($path_file) and $path_file = APP_PATH . 'view/template/' . $theme . '/htm/' . $pre; } } !is_file($path_file) and $path_file = APP_PATH . ($dir ? 'plugin/' . $dir . '/view/htm/' : 'view/htm/') . $default_pre; return $path_file; } function theme_mode_pre($type = 0) { global $config; $mode = $config['setting']['website_mode']; $pre = ''; if (1 == $mode) { $pre .= 2 == $type ? 'portal_category.htm' : 'portal.htm'; } elseif (2 == $mode) { $pre .= 2 == $type ? 'flat_category.htm' : 'flat.htm'; } else { $pre .= 2 == $type ? 'index_category.htm' : 'index.htm'; } return $pre; } ?>系统托盘

消除打扰,关掉那些不必要的Windows托盘通知

曾经写过一篇,其实那篇文章讲的是如何将我们自己的程序最小化到托盘并进行操作的编程方法。前两天看到里有人讨论如何隐藏托盘图标,记得从前为朋友写过一个隐藏大智慧软件的程序,采用的方法就是将窗口最小化并隐藏大智慧在托盘上的图标,

1月前80

摆脱干扰:一招搞定隐藏Windows系统托盘图标

曾经写过一篇,其实那篇文章讲的是如何将我们自己的程序最小化到托盘并进行操作的编程方法。前两天看到里有人讨论如何隐藏托盘图标,记得从前为朋友写过一个隐藏大智慧软件的程序,采用的方法就是将窗口最小化并隐藏大智慧在托盘上的图标,

1月前110

Windows系统任务栏与系统托盘图标隐藏技巧

简介:在Windows 10和Windows 11系统中,用户可以通过简单的设置步骤来隐藏任务栏和系统托盘图标,以优化屏幕空间或保护隐私。通过任务栏设置选项,可以启用“自动隐藏任务栏”功能,让任务栏在不使用时自动隐藏,并通过“通知区域

1月前320

个性化Windows桌面:隐藏任务栏图标指南

简介:在Windows操作系统中,任务栏提供快速访问和显示系统状态的功能,但用户可能希望隐藏任务栏上的图标或整个任务栏以个性化设置或优化工作环境。本文介绍了如何通过Windows自带的设置隐藏特定图标,并探讨了利用第三方软件SysTr

1月前610

PS Tray Factory win7 系统托盘 软件用法

PS Tray Factory软件网址:http:www.pssoftlabhide_system_tray_icons.phtml这个软件是作用是可以 通过 Ctrl ALT M 快捷键,将正在运行的一个最小化到任务栏的窗口

8月前840