blob: 5607dea85aea1117bf0fb7822a321cf519d0d246 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
class TInPlaceTextBoxTest extends TPage
{
function load_text($sender, $param)
{
$sender->Text = "muahaha";
}
function label1_changed($sender, $param)
{
$this->status->Text = "Status: ". $sender->Text;
}
function button_clicked($sender, $param)
{
$this->label1->Text = "hahahaha";
}
}
?>
|