in reply to wxPerl RadioBox Inheritance problem
try$self->SetBackgroundStyle('wxBG_STYLE_CUSTOM');
, since wxBG_STYLE_CUSTOM is supposed to be a constant(a function in perl), not a string.$self->SetBackgroundStyle(Wx::wxBG_STYLE_CUSTOM());
Any idea how I can access the RadioButton elements within the RadioBox?A wxRadioBox is a wxWindow, and wxWindow has a GetChildren method.
|
|---|