I Have a DataGrid with its FlowDirection set to "RightToLeft". Problem is when displaying negative numbers, the minus sign is shown on the opposite side. Setting the FlowDirection of the cell itself to "LeftToRight" fixes it, but then the left border of the cell moves to the right, so I have no border on the left, and a double border on the right. How can I fix this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You're gonna have to set FlowDirection on the TextBox rather than on the DataGridCell. If you're using a DataGridTextColumn then
|
|||
|