Xenofur has asked for the wisdom of the Perl Monks concerning the following question:

I've successfully loaded an XML resource in wxPerl like so:
use Wx::XRC; $self->{xrc} = Wx::XmlResource->new(); $self->{xrc}->InitAllHandlers(); $self->{xrc}->Load( 'test.xml' ); my $panel = $self->{xrc}->LoadPanel( $self, 'test_panel' );
However I cannot figure out how to actually access objects inside that, like for example a button named "test_button", for the purpose of changing labels or hiding/showing.

Can anyone help me there?

Replies are listed 'Best First'.
Re: how to get objects from wxperl xmlresource?
by Anonymous Monk on Mar 06, 2009 at 23:40 UTC
      Thanks for the hints. Guess i couldn't see the forest for the trees anymore.