是否可以在 UWP 中禁用 TextBlock 的拼写检查?

Is there ability to disable Spell checking for TextBlock in UWP?

我还没有找到这个问题的 bool 答案。有什么方法可以禁用 UWP 中 TextBlock 的拼写检查以进行控制,例如:

<TextBlock Text="{x:Bind MyUrl}" />

这个article告诉IsSpellCheckEnabled = false,但是VS2017(15.9.11)不同意这篇文章并告诉:Error XLS0413 The 属性 'IsSpellCheckEnabled' was not found in输入 'TextBlock'.

Is there ability to disable Spell checking for TextBlock in UWP?

TextBlock 没有拼写检查行为。但是,TextBoxRichEditBox有这个功能。

还有 IsSpellCheckEnabled 属性 用于在 uwp 中打开或关闭此功能。

<TextBox Text="{x:Bind Title, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" IsSpellCheckEnabled="False" />

详情请参考Guidelines for spell checking