Help for this page

Select Code to Download


  1. or download this
    
    #!/usr/bin/perl
    
  2. or download this
    use Tk;
    
  3. or download this
    #MainWindow
    
  4. or download this
    our $mw = MainWindow->new;
    
  5. or download this
    $mw->configure(-bg=>"#9AC0CD");
    
  6. or download this
    $mw->geometry("800x600+240+80");
    
  7. or download this
    $mw->resizable( 0, 0 );
    
  8. or download this
    $mw->title("hello");
    
  9. or download this
    $mw->Label(-text =>'hellov1.0',-font=>[-size=>24],-bg=>"#9AC0CD")->pac
    +k();
    
  10. or download this
    MainLoop;