Font issues Tkinter/Python 3.5

MRAB python at mrabarnett.plus.com
Fri Jan 29 20:09:59 EST 2016



On 2016-01-29 22:04:57, "KP" <kai.peters at gmail.com> wrote:

>import tkinter as tk
>from tkinter import ttk
>from tkinter import font
>...
>     def __init__(self):
>         self.root = tk.Tk()
>         self.root.title('Main Window')
>         self.root.geometry('1000x800+200+200')
>         self.root.minsize(width=1000, height=800)
>
>         default_font = tkFont.nametofont("TkDefaultFont")
>         default_font.configure(size=12)
>         self.root.option_add("*Font", default_font)
>         ...
>         self.root.mainloop()
>...
>
>tells me that 'tkFont' is not defined. What am I missing?
>
>As always, thanks for any pointers!
>
  'nametofont' is in tkinter.font, which you have imported as 'font', so 
'tkFont.nametofont' should be 'font.nametofont'.




More information about the Python-list mailing list