SpellCheck.SetIsEnabled(TextBoxBase, Boolean) 方法

定义

启用或禁用指定的文本编辑控件(如 TextBoxRichTextBox)上的拼写检查。

public:
 static void SetIsEnabled(System::Windows::Controls::Primitives::TextBoxBase ^ textBoxBase, bool value);
public static void SetIsEnabled (System.Windows.Controls.Primitives.TextBoxBase textBoxBase, bool value);
static member SetIsEnabled : System.Windows.Controls.Primitives.TextBoxBase * bool -> unit
Public Shared Sub SetIsEnabled (textBoxBase As TextBoxBase, value As Boolean)

参数

textBoxBase
TextBoxBase

要在其上启用或禁用拼写检查的文本编辑控件。 示例控件包括 TextBoxRichTextBox

value
Boolean

一个布尔值,用于指定是否在文本编辑控件上启用拼写检查。

注解

此方法为 XAML 中的属性启用附加属性用法 IsEnabled 。 以下示例演示 XAML 用法。

适用于