[TKinter]How to set LabelFrames font and color from option file

Beppe giuseppecostanzi at gmail.com
Thu Dec 14 11:47:51 EST 2017


Il giorno giovedì 14 dicembre 2017 17:29:36 UTC+1, Beppe ha scritto:
> Il giorno giovedì 14 dicembre 2017 16:36:24 UTC+1, Peter Otten ha scritto:
> > Beppe wrote:
> > 
> > > Il giorno giovedì 14 dicembre 2017 15:18:31 UTC+1, Peter Otten ha scritto:
> > >> Beppe wrote:
> > >> 
> > >> > I don't succeed in planning the value of the font and color in the
> > >> > LabelFrames using the option_db file, such as
> > >> > 
> > >> > *LabelFrame*font: Helvetica 14
> > >> > *LabelFrame*foreground: red
> > >> > 
> > >> > exist a list of the keywordses to use?
> > >> 
> > >> >>> import tkinter as tk
> > >> >>> root = tk.Tk()
> > >> >>> lf = tk.LabelFrame(root)
> > >> >>> lf["class"]
> > >> 'Labelframe'
> > >> 
> > >> Do you spot the difference? The class of the LabelFrame widget is
> > >> Labelframe with a lowercase f. Once you change your database entries to
> > >> 
> > >> *Labelframe*font: Helvetica 14
> > >> *Labelframe*foreground: red
> > >> 
> > >> everything should work as expected.
> > > 
> > > perfect, it works too much well, even my buttons now are helvetica 14 and
> > > red  ;(
> > 
> > I does what you tell it to do. Remove the second wildcard if you only want 
> > to change the Labelframe style:
> > 
> > *Labelframe.font: Helvetica 14
> > *Labelframe.foreground: red
> 
> Does that mean buttons  inerith text from labelframe?!?! it looks so.

ok, so it seems working

*Labelframe*font: Helvetica 14
*Labelframe*foreground: red

*Button*foreground: black
*Button*font: Verdana 10



More information about the Python-list mailing list