Replies: 2 comments 3 replies
|
try this: <tv:TableView ItemsSource="{Binding Items}">
<tv:TableView.Resources>
<SolidColorBrush x:Key="TableViewHeaderRowBackground" Color="Transparent" />
</tv:TableView.Resources>
<tv:TableView.Background>
<SolidColorBrush Color="{ThemeResource SubtleFillColorSecondary}" />
</tv:TableView.Background>
</tv:TableView> |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Uh oh!
There was an error while loading. Please reload this page.
For example, I want a TabView to have the same background color as the header row of TableView
How would I do that? I've found Resources.xaml but I can't work out how to reference those in my solution
All reactions