gpt4 book ai didi

wpf - 在 Wpf 的 DataGrid 中更改单元格的 FlowDirection

转载 作者:行者123 更新时间:2023-12-04 10:45:05 25 4
gpt4 key购买 nike

我有一个 DataGrid,其 FlowDirection 设置为“RightToLeft”。问题是当显示负数时,减号显示在对面。
将单元格本身的 FlowDirection 设置为“LeftToRight”可修复它,但随后单元格的左边框向右移动,因此我左侧没有边框,右侧有双边框。
我怎样才能解决这个问题?

最佳答案

您必须在 TextBox 上而不是在 DataGridCell 上设置 FlowDirection。如果您使用的是 DataGridTextColumn 那么

<DataGridTextColumn ...>
<DataGridTextColumn.ElementStyle>
<Style TargetType="TextBlock">
<Setter Property="FlowDirection" Value="LeftToRight" />
</Style>
</DataGridTextColumn.ElementStyle>
<DataGridTextColumn.EditingElementStyle>
<Style TargetType="TextBox">
<Setter Property="FlowDirection" Value="LeftToRight" />
</Style>
</DataGridTextColumn.EditingElementStyle>
</DataGridTextColumn>

关于wpf - 在 Wpf 的 DataGrid 中更改单元格的 FlowDirection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4177668/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com