当我在运行fedora 21的macbook pro上启动带有gui的python应用程序时 - tkinter gui非常小。
有什么方法可以扩展它以便它有用吗?
答案 0 :(得分:0)
是的,请参阅this question here。
您还可以Google "python tkinter scale up DPI",that作为second link。
基本上,(作为the other question outlines),您需要缩放系数。这是基于理想化的72 DPI。因此,对于300 DPI显示器,您可能希望设置一个约为4.0
的因子(技术上4.166
):
root.tk.call('tk', 'scaling', 4.0)