I am experiencing a problem with WPF built-in SpellCheck for Textbox, when i am using an abbreviation, for example "e.g." for "en" language.
The word gets underlined, but not the trailing dot. In the list of suggestions the same word is provided, but with a dot ("e.g."). Clicking it, results in following: "e.g..". And "e.g" part is underlined again.
I could reproduce it on Windows 10 and Windows Server 2012. I have tried to install 4.7 .Net Framework and target different frameworks (4.5, 4.6, 4.7) in the application, but issue still persists. On Windows 7 machine this issue is not present.
Here is a demonstration: Image
The code itself is basically:
<Grid>
<TextBox SpellCheck.IsEnabled="true" Language="en"></TextBox>
</Grid>