Delphi is a well-known rapid application development tool (Rapid Application Development, referred to as RAD) under the Windows platform. Its predecessor was the "Borland Turbo Pascal" that was popular in the DOS era. The earliest version was developed by the American Borland company in 1995. The main creator is Anders Hejlsberg. After several years of development, this product was also transferred to Embarcadero. Delphi is an integrated development environment (IDE). The core used is Object Pascal, which is developed from the traditional Pascal language. It uses a graphical user interface as the development environment, and uses IDE, VCL tools and compilers to cooperate with the function of connecting to the database. An application development tool centered on object-oriented programming.
Text begins
Before Delphi 10.2.2, you could modify the font and font size through the system registry keys of the IDE's visual settings. Because the Delphi 10.2.2 IDE added a theme, and the theme contained font information, this method was invalid.
For high-resolution screens, the default font size is too small when Windows fonts are scaled to 125%, 200%, or higher.
This problem was not solved until Delphi 10.3.3 released yesterday.
There are two ways to modify the system registry:
Create a registry script file and execute it. Manually modify the system registry usingregedit
.Create 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/20.0/Theme]"Enabled"=dword:00000001"FontName"="Segoe UI""FontSize"=dword:0000000b
FontSize above = 00000[/code]
NOTE: Details about specifying values.
Save documents with a.reg
extension. Execute the registry script file you created. Warnings about changing the registry may appear.You must accept it to apply the changes.
Note: You may need administrator rights to execute the registry script file. If the IDE is open when you set or change registry values, you must restart the IDE for these values to take effect.
Manually modify registry keys
Open the system registry (typeregedit
in the search bar on the Windows Start menu) Find HKEY_CURRENT_USER/Software/Embarcadero/BDS/20.0/Theme, modify the FontSize, the default is font size 9Note: You may need administrator privileges to modify the system registry. If the IDE is open when you set or change registry values, you must restart the IDE for these values to take effect.
Summarize
The above is the editor's introduction to modifying the Delphi 10.3.3 IDE font and font size. I hope it will be helpful to you. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for your support of the Wulin.com website!
If you think this article is helpful to you, you are welcome to reprint it, please indicate the source, thank you!