Make wxChoicebook background transparent.

This fixes the appearance of an empty wxChoicebook used as a child of a
wxNotebook under MSW.

Closes #12503.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66233 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2010-11-22 01:23:21 +00:00
parent 26696222ff
commit 6cab632f32

View File

@ -79,6 +79,11 @@ public:
// returns the choice control // returns the choice control
wxChoice* GetChoiceCtrl() const { return (wxChoice*)m_bookctrl; } wxChoice* GetChoiceCtrl() const { return (wxChoice*)m_bookctrl; }
// Override this to return true because the part of parent window
// background between our controlling wxChoice and the page area should
// show through.
virtual bool HasTransparentBackground() { return true; }
protected: protected:
virtual void DoSetWindowVariant(wxWindowVariant variant); virtual void DoSetWindowVariant(wxWindowVariant variant);