我有一个数据网格,它绑定到我的ViewModel上的一个集合。当窗口加载时,填充数据网格并设置SelectedItem。 (我知道这是因为我有一个绑定到所选项目的详细视图。)但是该行未突出显示。如果我点击该行,它将突出显示并正常工作。
如何在默认选择时突出显示所选行?
<DataGrid IsSynchronizedWithCurrentItem="True" SelectionUnit="FullRow" RowHeaderWidth="0" VerticalScrollBarVisibility="Visible" HorizontalScrollBarVisibility="Visible" IsReadOnly="True" ItemsSource="{Binding Items}" SelectedItem="{Binding Path=SelectedItem, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" AutoGenerateColumns="False">
<DataGrid.Columns>
<DataGridTextColumn Header="Run Date" Binding="{Binding Path=RunDate, StringFormat={}{0:MM-dd-yy HH:mm:ss} }" />
<DataGridTextColumn Header="Description" Binding="{Binding Description}" />
<DataGridTextColumn Header="Duration" Binding="{Binding Duration}" />
<DataGridTextColumn Header="Deviation" Binding="{Binding Deviation}" />
</DataGrid.Columns>
</DataGrid>
答案 0 :(得分:0)
您只需要一种样式来告诉您如何使用SelctedItem
<Style x:Key="SomeStyle" TargetType="{x:Type DataGridRow}" >
<Style.Triggers>
<Trigger Property="DataGridRow.IsSelected" Value="True">
<Setter Property="Background" Value="Red" />
</Trigger>
</Style.Triggers>
</Style>
,然后将其应用于datagrid
中的xaml
<DataGrid RowStyle="{StaticResource SomeStyle}"...
答案 1 :(得分:-1)
正如我的评论中所提到的,有可能将网格集中在通过行为改变的选择上。所以你会得到,这些选择将突出显示:
using System.Windows.Controls;
using System.Windows.Interactivity;
public class FocusGridOnSelectionChanged : Behavior<DataGrid>
{
protected override void OnAttached()
{
base.OnAttached();
AssociatedObject.SelectionChanged += AssociatedObject_SelectionChanged;
}
private void AssociatedObject_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
AssociatedObject?.Focus();
}
protected override void OnDetaching()
{
AssociatedObject.SelectionChanged -= AssociatedObject_SelectionChanged;
base.OnDetaching();
}
}
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
<DataGrid ... >
<i:Interaction.Behaviors>
<yourbehaviorsns:FocusGridOnSelectionChanged/>
</i:Interaction.Behaviors>
...
</DataGrid>
但我担心,这不是你所追求的完整解决方案,因为如果网格失去焦点,所选项目将失去它们突出显示。
因此,如果您愿意,在网格失去焦点后也会突出显示该选择,您应该重写DataGridRow控件模板,即视觉样式'UnfocusedSelected'。