更改 Wpf DataGrid 中单元格的 FlowDirection
我有一个 DataGrid,其 FlowDirection 设置为“RightToLeft”。问题是当显示负数时,减号显示在相反的一侧。 将单元格本身的 FlowDirection 设置为“LeftToRight”可以修复此问题,但随后单元格的左边框向右移动,因此左侧没有边框,右侧有双边框。 我该如何解决这个问题?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须在 TextBox 而不是 DataGridCell 上设置 FlowDirection。如果您使用的是 DataGridTextColumn 那么
You're gonna have to set FlowDirection on the TextBox rather than on the DataGridCell. If you're using a DataGridTextColumn then