pmw scrolled frame widget

Cimarron Taylor cimarron+google at taylors.org
Thu May 2 14:25:41 EDT 2002


You need to dig into the source in lib/PmwScrolledFrame.py.  On closer
inspection you find the code:

	# Create a frame in the clipper to contain the widgets to be
	# scrolled.
	self._frame = self.createcomponent('frame',
		(), None,
		Tkinter.Frame, (self._clipper,)
	)

Based on that I would suggest you attempt

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

or whatever color you need.  

Cim



More information about the Python-list mailing list