TextBox inside DockPanel - strange behavior with special characters

Viewed 46

I have a TextBox inside a DockPanel whose FlowDirection is RightToLeft.

<DockPanel Grid.Column="1" FlowDirection="RightToLeft">
   <TextBox Text="Hello@"/>
</DockPanel>

Inside the TextBox, it displays like this:

@Hello

Why is this happening and how can I prevent it?

0 Answers
Related