blob: 9b5a05f76186d981888fb71bf691790fef953478 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?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";
}
function NewPackageSubject($sender, $param)
{
throw new TException('Exist');
}
}
?>
|