blob: 334c826cc5e549f84a940f1cb0ff5c79d89b2364 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
class HomePage extends TPage
{
public function onPreInit($param)
{
parent::onPreInit($param);
if(!$this->User->IsGuest)
$this->Theme='';
}
public function testClick($sender,$param)
{
if($sender->BackColor==='')
$sender->BackColor='blue';
else
$sender->BackColor='';
$this->TextBox->focus();
}
}
?>
|