<?php /* * php code generated with wxformbuilder (version jun 17 2015) * http://www.wxformbuilder.org/* * please do "not" edit this file! */ /* * class myframe1 */ class myframe1 extends wxframe { function __construct( $parent=null ){ parent::__construct ( $parent, wxid_any, wxemptystring, wxdefaultposition, new wxsize( 500,300 ), wxdefault_frame_style|wxtab_traversal ); $this->setsizehints( wxdefaultsize, wxdefaultsize ); $this->centre( wxboth ); } function __destruct( ){ } } //application initialization start point class myapp extends wxapp { function oninit() { $zs = new myframe1(); $zs->show(); //$zs->maximize(); $this->frm = $zs; return true; } function onexit() { return 0; } } wxinitallimagehandlers(); $gridapp = new myapp(); wxapp::setinstance($gridapp); wxentry(); ?>
