我有一个DataGrid
,其中一列需要与右边对齐。为此,我使用
<DataGridTextColumn.CellStyle>
<Style>
<Setter Property="FrameworkElement.HorizontalAlignment" Value="Right"/>
</Style>
</DataGridTextColumn.CellStyle>
可以正常工作,如下所示:
不幸的是,当选择行时,未正确突出显示对齐的单元格。只突出显示数据,但数据左侧的空白区域不是,如下所示:
此外,数据左侧的区域对鼠标点击不再敏感。在上面的示例中,单击“12 .34”左侧的单击将不会选择第一行(但是“A1”右侧的单击将会出现)。总而言之,这会带来糟糕的用户体验。
那么,如何在不破坏行选择的情况下执行HorizontalAlignment
?我希望整行突出显示,我希望能够点击任意位置来选择一行。
我正在使用VS 2010,.NET 4,包括Win XP和Win 7。
重现我的例子的代码:
namespace WpfApplication2
{
public class ListItem
{
public string FieldA { get; set; }
public decimal FieldB { get; set; }
public string FieldC { get; set; }
}
}
<Window x:Class="WpfApplication2.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:My="clr-namespace:WpfApplication2"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<x:Array x:Key="List" Type="{x:Type My:ListItem}">
<My:ListItem FieldA="A1" FieldB="12.34" FieldC="C1"/>
<My:ListItem FieldA="A2" FieldB="1000.00" FieldC="C2"/>
<My:ListItem FieldA="A3" FieldB="987.6" FieldC="C3"/>
</x:Array>
</Window.Resources>
<Grid>
<DataGrid ItemsSource="{StaticResource List}" AutoGenerateColumns="False" SelectionUnit="FullRow" >
<DataGrid.Columns>
<DataGridTextColumn Header="ColumnA" Binding="{Binding Path=FieldA}" Width="150" />
<DataGridTextColumn Header="ColumnB" Binding="{Binding Path=FieldB, StringFormat='#,##0.00'}" Width="150" >
<DataGridTextColumn.CellStyle>
<Style>
<Setter Property="FrameworkElement.HorizontalAlignment" Value="Right"/>
</Style>
</DataGridTextColumn.CellStyle>
</DataGridTextColumn>
<DataGridTextColumn Header="ColumnC" Binding="{Binding Path=FieldC}" Width="*" />
</DataGrid.Columns>
</DataGrid>
</Grid>
</Window>
答案 0 :(得分:5)
尝试DataGridTextColumn.ElementStyle
和(如果需要)DataGridTextColumn.EditingElementStyle