简体   繁体   中英

why tkinter ask open file has a low resolution

在此处输入图像描述

and why folders are different?

i'm working with python 3 and here's my code

from tkinter.filedialog import askopenfilename
askopenfilename(initialdir = "/",title = "Select a File",filetypes = (("Text files","*.txt*"),("all files","*.*")))

The only way is using the call() function to change the resolution scaling.

from tkinter.filedialog import askopenfilename
import tkinter as tk
 
root = tk.Tk()
root.geometry("200x150")
root.tk.call('tk', 'scaling', 2.0)

askopenfilename(initialdir = "/",title = "Select a File",filetypes = (("Text files","*.txt*"),("all files","*.*")))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM