blob: bbd30205650e57aec4e6b9ba4503fd2561c64646 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
class EventTriggeredCallback extends TPage
{
function text1_focused($sender, $param)
{
$this->label1->Text = 'text 1 focused';
}
function panel1_onmouseover($sender, $param)
{
$this->label1->Text = 'panel 1 on mouse over '.time();
}
function button1_clicked($sender, $param)
{
$this->label1->Text = 'button 1 clicked';
}
}
|