我有以下樣式WPF DataGrid的風格
<Style x:Key="DataGridRowStyle1" TargetType="{x:Type DataGridRow}">
<Setter Property="Foreground" Value="#FFB3B3B3"/>
<Setter Property="Height" Value="25"/>
<Setter Property="HorizontalContentAlignment" Value="Stretch"/>
<Setter Property="Template" Value="{DynamicResource DataGridRowControlTemplate1}"/>
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="#FF262626"/>
</Trigger>
<Trigger Property="ItemsControl.AlternationIndex" Value="0">
<Setter Property="Background" Value="#FF383838"/>
</Trigger>
<Trigger Property="ItemsControl.AlternationIndex" Value="1">
<Setter Property="Background" Value="#FF333333"/>
</Trigger>
</Style.Triggers>
</Style>
一個DataGrid,它似乎是這樣的:
在DataGrid失去焦點似乎我的問題:
我該如何讓我t的外觀與焦點無關嗎?
可以共享完成全XAML的風格?看起來不錯。 – bashkan
我可以問你正在使用哪種字體嗎? –
我不記得了,對不起 –