Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
165
How to change background of active pane's header?
posted

How to change only background of active pane's header?

 

Parents
  • 138253
    Verified Answer
    Offline posted

    Hello,

     

    Thank you for your post. I have been looking through it and i suggest you use the following Style for the PaneHeaderPresenter:

     

                <Style TargetType="{x:Type igDock:PaneHeaderPresenter}">
                    <Style.Triggers>
                        <DataTrigger Binding="{Binding Path=IsKeyboardFocused}"  Value="True">
                            <Setter Property="Background" Value="YellowGreen"/>
                        </DataTrigger>
                    </Style.Triggers>
                </Style>
    

     

    Please let me know if this meets your reuirements.

     

    Looking forward fort your reply.

Reply Children
No Data