blob: 4a4881077c6ec458c1b4de654f0f6a5fe31d015b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
class PageStateTest extends TPage
{
function button1_oncallback($sender, $param)
{
//sleep(rand(0,5));
$sender->CustomData = $sender->CustomData + 1;
$this->label1->Text = " button1 clicked ".$sender->CustomData." times";
}
}
?>
|