Tkinter:最大化matplotlib GUI窗口

时间:2016-07-23 21:28:08

标签: python user-interface matplotlib tkinter

所以似乎matplotlib gui图(la plt.show())不适应监视器分辨率,并且在高分辨率屏幕上看起来很小。是否有matplotlib / tkinter修复或者我是否在Windows设置中的某处摆弄?

感谢enter image description here

1 个答案:

答案 0 :(得分:2)

plt.show()调用这些函数之前:

mng = plt.get_current_fig_manager()
mng.frame.Maximize(True)

也许它可以解决你的问题。