How can I change the Background of the header of a GroupBox?
I'm trying to do that with:
<GroupBox Grid.Row="0">
   <GroupBox.Header>
       <Setter Property="Background" //<- no backgroundproperty
there is no Background property
You can define a Border in the Header and set the Background of it to your desired color:
<GroupBox >
    <GroupBox.Header>
        <Border Background="Red">
            <Label Content="Hello"></Label>
        </Border>
    </GroupBox.Header>
</GroupBox>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With