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