Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: How do I make a static text clickable in wxPerl?

by stefbv (Curate)
on May 27, 2011 at 06:19 UTC ( [id://906932]=note: print w/replies, xml ) Need Help??


in reply to How do I make a static text clickable in wxPerl?

Wx::StaticText 'isa' Wx::Window, as a consequence will respond to window events.

use strict; use warnings; use Wx; package MyApp; use base 'Wx::App'; use Wx qw{:everything}; use Wx::Event qw(EVT_LEFT_UP); sub OnInit { my $frame = Wx::Frame->new( undef, -1, 'A Clickable Label', ); my $label = Wx::StaticText->new( $frame, -1, "Click here to exit", ); my $label2 = Wx::StaticText->new( $frame, -1, "Click here to not exit :)", ); my $bs = Wx::BoxSizer->new(wxVERTICAL); $bs->Add( $label, 0, wxALL, 5 ); $bs->Add( $label2, 0, wxALL, 5 ); $frame->SetSizer($bs); EVT_LEFT_UP $label, sub { $frame->Close }; $frame->Show; } MyApp->new->MainLoop;
This works for this example, but I can't say for sure if it is the right thing to do.

Regards, Stefan

Replies are listed 'Best First'.
Re^2: How do I make a static text clickable in wxPerl?
by ZJ.Mike.2009 (Scribe) on May 28, 2011 at 02:00 UTC
    Thank you Stefan. This works like charm :)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://906932]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (4)
As of 2024-04-19 03:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found