Delphi Seattle has very big font as default

若如初见. 提交于 2019-12-10 14:32:27

问题


Delphi Seattle has very big font as default , and I dont like it.

tried to change it as I did with XE8 with a script

    Windows Registry Editor Version 5.00
    [HKEY_CURRENT_USER\Software\Embarcadero\BDS\17.0\ModernTheme]

     "FontName"="Segoe UI"

     "FontSize"=dword:0000000a

     "MainToolBarColor"="clGradientActiveCaption"

But it did not work , how is this handled in Delphi Seattle ?


回答1:


The documentation has not changed between the two versions.

Creating a Registry Script File

  1. Create a new text document (you can use any text editor) and copy the following text into it:

    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\Software\Embarcadero\BDS\17.0\ModernTheme]
    "FontName"="Segoe UI"
    "FontSize"=dword:0000000a
    "MainToolBarColor"="clGradientActiveCaption"
    

    Note: See the table of customizable values for details about the specified values.

  2. Save the document with the .reg extension.

  3. Execute the registry script file that you created. A warning about changing the registry may appear. You must accept it in order to apply the changes.

    Note: You may need Administrator permissions to be able to execute registry script files. If the IDE is open when you set or change registry values, you must restart the IDE for the values to take effect.

The default values for the font appearance are as shown above, and it seems you are just reassigning them.



来源:https://stackoverflow.com/questions/32392773/delphi-seattle-has-very-big-font-as-default

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!