TextBox inside DockPanel - strange behavior with special characters

62 views Asked by At

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

There are 0 answers