My GUI programing in winXP by tkinter, but i found it appears different size. I learn it because the system defult font is different. When using "control /name Microsoft.Personalization /page pageColorization" in CMD can open this page. But how i can set the project and font in python code?
tkinter's size is difference between xp and win7
94 views Asked by xxx88qqq At
1
There are 1 answers
Related Questions in TKINTER
- How to Retrieve Data from an MySQL Database and Display it in a GUI?
- Problem with a simple code to open windows file explorer on Pycharm
- Frame not displaying | python tkinter
- How to get text and other elements to display over the Video in Tkinter?
- Tkinter App - My Toplevel window is not appearing. App is stuck in mainloop
- Entry field values are not getting printed - Python
- Issue with making python executable with local db, sqlite3, tkinter
- Responsive gui customtkinter
- Tkinter menu spontaneously adding extra item
- How could I reuse the CTk tabviews in python GUI app?
- Not able to use tkinter in Mac OS Sonoma 14.4.1 and vscode
- Tkinter binding button press to functions
- Pyplot graph doesn't plot to tkinter window
- Need help on _tkinter.TclError: invalid command name "<!DOCTYPE"
- Matplotlib graph not being constrained as expected in frame
Related Questions in CONTROL-PANEL
- Powershell - How to use Get-WindowsOptionalFeature command to "Turn Windows Features On and Off"
- How do I set the Publisher in Windows install
- Why does my Oracle client installation not appear in Windows Control Panel?
- Xampp controller Panel become error
- How to get FileName and Directory of Windows Control Panels?
- Open keyboard properties dialog in a localized system
- tkinter's size is difference between xp and win7
- Where can you find the control panel for xampp in mac?
- Using Batch file to change various settings in Windows Control Panel
- DSC update registry in HKEY_CURRENT_USER to enable lock screen saver
- Test if Wireless Adapter is Working Before Resetting
- PowerShell cmdlet to set Control Panel items?
- Python: Change windows control panel settings
- Configuration page of control panel portlet does not appear
- Installed program not listed In Programs and Features
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Since version 8.5 Tk defines some global named fonts that are initialized on Windows by reading the system theme defined fonts. So
TkDefaultFontis the named font used by most Tk controls if not overridden. This means you change changeTkDefaultFontand most of you controls will use the new font definition.Otherwise, each control has a
-fontconfiguration option to pass in a font to use. And there is the option database for assigning options by widget class.In tkinter the Tk font handling is provided by the
tkinter.fontpackage and using this the built-in named font objects can be accessed and modified.