TextBox.IsTextPredictionEnabled 属性

定义

获取或设置一个值,该值确定是否应为此 TextBox 启用 (“自动完成”) 的文本预测功能。

public:
 property bool IsTextPredictionEnabled { bool get(); void set(bool value); };
bool IsTextPredictionEnabled();

void IsTextPredictionEnabled(bool value);
public bool IsTextPredictionEnabled { get; set; }
var boolean = textBox.isTextPredictionEnabled;
textBox.isTextPredictionEnabled = boolean;
Public Property IsTextPredictionEnabled As Boolean
<TextBox IsTextPredictionEnabled="bool" />

属性值

Boolean

bool

如果为 true ,则启用文本预测功能,否则为 false。 默认值为 true

注解

如果用户使用的是物理键盘设备,则不启用文本预测。

文本预测是TextBox 控件内置的,使用特定于语言的字典。 将值设置为 true 不会自动在自定义类上启用该功能。

此属性不会影响日语或中文的输入法编辑器 (输入法) 。 即使此属性为 false,也会显示这些语言的文本预测。

适用于

另请参阅