Help for this page

Select Code to Download


  1. or download this
    import wx
    
    class MainWindow(wx.Frame):
    ...
    app = wx.App(False)
    win = MainWindow(None)
    app.MainLoop()
    
  2. or download this
    use strict;
    use warnings;
    use Wx;
    ...
    my $win = MainWindow->new;
    $win->Show(1);
    $app->MainLoop;