Entry 控件

(UI 0.9.9)

简介

Entry 是一个文本输入控件,适用于输入纯文本、密码或搜索词。

类概要

class UI\Controls\Entry extends UI\Control {
/* 常量 */
const int Normal;
const int Password;
const int Search;
/* 构造函数 */
public __construct(int $type = UI\Controls\Entry::Normal)
/* 方法 */
public getText(): string
public isReadOnly(): bool
protected onChange()
public setReadOnly(bool $readOnly)
public setText(string $text)
/* 继承方法 */
}

预定义常量

UI\Controls\Entry::Normal

一个普通的单行输入

UI\Controls\Entry::Password

一个密码输入

UI\Controls\Entry::Search

一个搜索输入

目录

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top