On Sep 16, 2013, at 10:37 PM, Paul McNett <[email protected]> wrote: > The different platforms are different in this regard. Try panel.BackColor = > None.
Alternatively, why not add a gradient to the panel? You can use: self.gradient = self.drawGradient(orientation="v", color1="grey", color2="white") to create a gradient on the form's main panel. Note that depending on the platform, the gradient may be redrawn on top of the controls, so you'll have to add a bunch of refresh() calls in those cases to make the controls re-appear on top of the gradient. You can make the panel transparent by setting its Transparency=0, but everything contained by it will also be transparent, and that would make for a difficult-to-use UI. -- Ed Leafe _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[email protected]
