Need to set background colour for wxListBox, not just wxCheckListBox,

to avoid scrolling problem when Windows effects are switched on.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34624 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2005-06-10 08:39:19 +00:00
parent 5088276afa
commit a374cdc43e
2 changed files with 8 additions and 16 deletions

View File

@ -322,14 +322,8 @@ bool wxCheckListBox::Create(wxWindow *parent, wxWindowID id,
long style,
const wxValidator& validator, const wxString& name)
{
if (wxListBox::Create(parent, id, pos, size, n, choices,
style | wxLB_OWNERDRAW, validator, name))
{
SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
return true;
}
else
return false;
return wxListBox::Create(parent, id, pos, size, n, choices,
style | wxLB_OWNERDRAW, validator, name);
}
bool wxCheckListBox::Create(wxWindow *parent, wxWindowID id,
@ -338,14 +332,8 @@ bool wxCheckListBox::Create(wxWindow *parent, wxWindowID id,
long style,
const wxValidator& validator, const wxString& name)
{
if (wxListBox::Create(parent, id, pos, size, choices,
style | wxLB_OWNERDRAW, validator, name))
{
SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
return true;
}
else
return false;
return wxListBox::Create(parent, id, pos, size, choices,
style | wxLB_OWNERDRAW, validator, name);
}
// misc overloaded methods

View File

@ -174,6 +174,10 @@ bool wxListBox::Create(wxWindow *parent,
return false;
}
// Necessary to prevent scroll problems within a notebook with Windows
// effects enabled
SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
// initialize the contents
for ( int i = 0; i < n; i++ )
{