Skip to content

Commit

Permalink
Improve styling of ProjectURL column
Browse files Browse the repository at this point in the history
  • Loading branch information
Samir Boulema committed Nov 8, 2023
1 parent 56034fd commit fc79d26
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/View/Monitor/NuGetMonitorControl.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,18 @@
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
<DataGridTemplateColumn Header="Project URL">
<DataGridTemplateColumn Header="Project URL"
dgx:DataGridFilterColumn.IsFilterVisible="False">
<DataGridTemplateColumn.CellStyle>
<Style TargetType="DataGridCell">
<Style.Triggers>
<DataTrigger Binding="{Binding IsSelected, RelativeSource={RelativeSource FindAncestor, AncestorType=DataGridRow}}" Value="True">
<Setter Property="Background" Value="Transparent" />
<Setter Property="BorderBrush" Value="Transparent" />
</DataTrigger>
</Style.Triggers>
</Style>
</DataGridTemplateColumn.CellStyle>
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock Margin="2,0" VerticalAlignment="Center">
Expand Down

0 comments on commit fc79d26

Please sign in to comment.