Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #102267
| From | MRAB <python@mrabarnett.plus.com> |
|---|---|
| Newsgroups | comp.lang.python |
| Subject | Re: Font issues Tkinter/Python 3.5 |
| Date | 2016-01-30 01:09 +0000 |
| Message-ID | <mailman.106.1454116211.2338.python-list@python.org> (permalink) |
On 2016-01-29 22:04:57, "KP" <kai.peters@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'.
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: Font issues Tkinter/Python 3.5 MRAB <python@mrabarnett.plus.com> - 2016-01-30 01:09 +0000
csiph-web