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