blob: 8d92e4a38dd830fb8872e71c8c70c7ab3f84a696 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
class Home extends TPage
{
public function txtFocused($sender,$param)
{
$this->label1->Text="Textbox focused";
}
public function txtBlurred($sender,$param)
{
$this->label1->Text="Textbox lost focus";
}
}
?>
|