Himanshi Goyal
Himanshi Goyal
@tingjiangcao Can you please provide a sample repro project ?
@Kamalesh-Periyasamy are we good to close this issue based on the comment by @h3xds1nz?
Hello, here is a workaround fix for this issue: ``` bool isLastInputShiftEnter = false; private void RichTextBox_PreviewKeyDown(object sender, KeyEventArgs e) { if (e.Key == Key.LeftShift || e.Key == Key.RightShift) {...
Thank you so much for pointing this out, @miloush!! Here is the updated workaround: ``` private void RichTextBox_PreviewKeyDown(object sender, KeyEventArgs e) { if (e.Key == Key.Enter && e.KeyboardDevice.Modifiers == ModifierKeys.Shift)...
If you attempt to export the content of the Rich Textbox with the above workaround, the line breaks will disappear in the exported document. To address this, here is a...
If we import an existing rich text document into the WPF rich text box and try to insert a Japanese character after a line break, we will encounter the existing...
@h3xds1nz this PR is good to be merged. Can you please resolve the merge conflicts?
Many thanks to @miloush for your relentless contributions. Your support is invaluable to our project! 😄
@n9 Looks like you are working on this issue, hence assigning it to you.
@optimus-code Thanks for reporting the issue. We haven't heard this issue from any other customer. As this issue is hardware specific, we won't be able to repro it locally. So...