pmw scrolled frame widget

A.M. Kuchling akuchlin at ute.mems-exchange.org
Thu May 2 15:10:09 EDT 2002


In article <29e28c51.0205021025.627e1fba at posting.google.com>, Cimarron Taylor wrote:
> Based on that I would suggest you attempt
>       self.sf._frame.configure(bg='white')
> or whatever color you need.  

You can get the contained frame without messing with private variables
by calling the .interior() method:

       self.sf.interior().configure(bg='white')

--amk



More information about the Python-list mailing list