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?