vote up 0 vote down star

Sorry if this is a repost - I've been looking through old posts to see if someone else has already had this problem.

I have the following xaml:

    <DockPanel>
    <DockPanel>
        <CheckBox IsChecked="{Binding Path=Test}" />
        <CheckBox IsChecked="{Binding Path=Test}" />
    </DockPanel>
    <DockPanel DockPanel.Dock="Left" Width="10" Background="Blue">
        <DockPanel.Style>
            <Style>
                <Style.Triggers>
                    <DataTrigger Binding="{Binding Path=Test}" Value="True">
                        <Setter Property="DockPanel.Background" Value="Yellow" />
                    </DataTrigger>
                </Style.Triggers>
            </Style>
        </DockPanel.Style>
    </DockPanel>
</DockPanel>

Now - the 2 checkboxes link properly - checking one will check the other - but the datatrigger is not firing at all.

What am I doing wrong?

flag

1 Answer

vote up 1 vote down check

The issue here is Property Value Precedence.

You are currently setting the Background to blue directly on the DockPanel. This explicit property will override any value set by the trigger.

Instead, you must set the original "Background" as a setter in the style.

   <DockPanel DockPanel.Dock="Left" Width="10">
       <DockPanel.Style>
           <Style>  
                <Setter 
                        Property="DockPanel.Background"
                             Value="Blue" /> 
               <Style.Triggers>                    
                   <DataTrigger 
                           Binding="{Binding Path=Test}"
                           Value="True">                        
                   <Setter 
                        Property="DockPanel.Background"
                             Value="Yellow" />                       
                    </DataTrigger>                </Style.Triggers>            </Style>        </DockPanel.Style>    </DockPanel></DockPanel>
link|flag
Thanks! - It's always funny just that one little oversight that makes everything not work. – John Oct 28 at 15:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.