Universal Windows Platform (UWP)
A Microsoft platform for building and publishing apps for Windows desktop devices.
3,019 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm new to UWP development. I have a wpf code to get the spelling mistakes count of a text box Text. Now i want to implement the functionality of getting spelling mistakes count in UWP. Please help.
Here is the wpf code
charCount = textBoxSpellChk.Text.Count();
var split = textBoxSpellChk.Text.Split(' ', ',');
errors = 0;
foreach (var s in split)
{
var spellTextBox = new TextBox();
spellTextBox.SpellCheck.IsEnabled = true;
spellTextBox.Text = s;
SpellingError e = spellTextBox.GetSpellingError(0);
if (e != null)
{
errors++;
}
}
Hello,
Welcome to our Microsoft Q&A platform!
Currently UWP does not expose a corresponding API, and cannot get the number of misspelled characters like WPF
Thanks.