Help for this page

Select Code to Download


  1. or download this
    use Qt;
    import Qt::app;
    ...
    $app->setMainWidget($hello);
    $hello->show();
    exit $app->exec();
    
  2. or download this
    use Qt;
    use Qt::Object;
    ...
    $app->setMainWidget($hello);
    $hello->show();
    exit $app->exec();