gpt4 book ai didi

wpf - 选择行时突出显示 DataGrid 中的 RowDetails

转载 作者:行者123 更新时间:2023-12-04 19:24:50 26 4
gpt4 key购买 nike

我有一个 DataGridRowDetailsVisibilityMode设置为 Visible .
现在,当我选择一行时,我也想突出显示详细信息区域,而默认设置是仅突出显示行单元格。获得这种行为的任何提示?

最佳答案

这对我有用:

<DataGrid.RowDetailsTemplate>
<DataTemplate>
<Border>
<Border.Style>
<Style TargetType="Border">
<Style.Triggers>
<DataTrigger Binding="{Binding IsSelected, RelativeSource={RelativeSource AncestorType={x:Type DataGridRow}}}" Value="True">
<Setter Property="Background" Value="{x:Static SystemColors.HighlightBrush}"/>
</DataTrigger>
</Style.Triggers>
</Style>
</Border.Style>
<StackPanel>
<!-- my details content here -->
</StackPanel>
</Border>
</DataTemplate>
</DataGrid.RowDetailsTemplate>

关于wpf - 选择行时突出显示 DataGrid 中的 RowDetails,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20955300/

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