blob: f9da46a2abf98796f21d606cc931b9604c4ed6e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?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";
}
}
|