SampleForm::Form_Create PHP Method

Form_Create() protected method

protected Form_Create ( )
    protected function Form_Create()
    {
        $this->lblMessage = new QLabel($this);
        $this->lblMessage->Text = 'Click the button to change my message.';
        $this->btnButton = new QButton($this);
        $this->btnButton->Text = 'Click Me';
        $this->btnButton->AddAction(new QClickEvent(), new QAjaxAction('btnButton_Click'));
    }