First page Back Continue Last page Overview Graphics
Basics of a wxPerl application
- # The application must subclass Wx::App.
# In this example, the subclass is MyApp.
# Create an instance of the subclass.
my $app = MyApp->new();
# Start processing events.
$app->MainLoop();