Change Project Explorer tree view font size in Eclipse Oxygen(在 Eclipse Oxygen 中更改 Project Explorer 树视图字体大小)
问题描述
我正在使用 Eclipse 版本:Oxygen.1a Release (4.7.1a),我想放大 Project Explorer 树视图字体大小,因为我有一些视力问题,因此我搜索了很多地方来放大项目树视图字体大小.
I am using Eclipse Version: Oxygen.1a Release (4.7.1a) and I want to enlarge the Project Explorer tree view font size because I have some sight issues and thus I searched many places to enlarge the project tree view font size.
我只在项目资源管理器树视图中为较早或等于 eclipse luna 版本的旧 eclipse 版本创建了字体更改.
I only founded the font change in project explorer tree view for older eclipse versions releases which are older or equal to eclipse luna version.
对于信息,我想说这个 Oxygen 版本是 Eclipse IDE 中的最新版本,请有人帮助我.
for the information I would like to say that this Oxygen version release is latest in Eclipse IDE, please somebody help me.
推荐答案
我认为这对其他人也很重要,所以我发布了这个,以满足 eclipse ide 中的以下要求,
I assume that it is important for others also, so I am posting this, for below requireds in eclipse ide,
增加 java 编辑器字体大小
Window Menu -> Preferences -> General > Appearance > Color and Fonts > Java > Java Editor Text Font > Edit & Apply
增加控制台输出字体大小
Window Menu -> Preferences -> General > Appearance > Color and Fonts > Debug > Console font > Edit & Apply
增加 xml bean 文件字体大小
Window Menu -> Preferences -> General > Appearance > Color and Fonts > Basic > Text Font > Edit & Apply
增加对话框视图字体大小
Window Menu -> Preferences -> General > Appearance > Color and Fonts > Basic > Dialog Font > Edit & Apply
增加项目浏览器树形视图字体大小
如果使用 Windows 7 或更高的体系结构,然后到达 eclipse 主目录,进入 eclipsepluginsorg.eclipse.ui.themes_X.X.X.vXXXXXXXX-XXXXcss
目录,找到两个css文件,分别是"e4_default_gtk.css"
和"e4_default_win.css"
,打开并在上述两个文件的尾部添加上述css脚本部分,保存并相应关闭,
If using Windows 7 or higher architecture, then reach to the eclipse home directory,
go inside of eclipsepluginsorg.eclipse.ui.themes_X.X.X.vXXXXXXXX-XXXXcss
directory,
find two css files which are "e4_default_gtk.css"
and "e4_default_win.css"
,
open and add below said css script part in tail of above two files, save those and close accordingly,
.MPart Tree {
font-family: Consolas;
font-size: 14;
}
如果 eclipse 被打开,重启,这一切都为我在 eclipse oxygen.1a 发布版本上工作,
if eclipse is opened, restart, it all worked for me on eclipse oxygen.1a release version,
希望在其他操作系统类型上,您必须编辑相同的 e4_default_gtk.css
和其他 e4_default_os-type.css
,谢谢.
and hope on other OS type, you have to edit the same e4_default_gtk.css
and other e4_default_os-type.css
, thanks.
这篇关于在 Eclipse Oxygen 中更改 Project Explorer 树视图字体大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Eclipse Oxygen 中更改 Project Explorer 树视图字体大小


- Java包名称中单词分隔符的约定是什么? 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01