Binding in WPF style causes inexplicable "Cannot find governing FrameworkElement" error

20,870

Solution 1

I think I found some useful info.

http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/db050ce6-d084-41ad-9a31-c01831687683

The answer to this appears to be in the Microsoft explanation of the behavior as an ItemsControl goes through its compositing process and applies bindings and styles. That is, WPF is trying to optimize your DataTemplate before it has a source of data to successfully evaluate the bindings: "dataitem=null". In every other instance during its layout passes, "dataitem" points to something in your "Zones" IEnumerable and it's able to complete the bindings. Otherwise, you'd see the error with each item in your collection, rather than just once per property.

It appears to be a "pay no attention to the man behind the curtain" type of thing. And it should probably be added to MS Connect as a bug report; successful code shouldn't kick out "Error"s that don't matter. But I'll leave it to you to file this with MS Connect if you want.

Solution 2

After reading Rob Perkins' answer, I added a FallbackValue to a binding with this issue. This cleared the error for me.

Share:
20,870
devuxer
Author by

devuxer

Updated on July 10, 2022

Comments

  • devuxer
    devuxer almost 2 years

    I have an ItemsControl that displays a bunch of rectangles. Each rectangle needs to be offset upward and to the left. So, I created a RectangleStyle that uses bindings to set the width, height, X translation, and Y translation for a rectangle.

    The width and height bindings are working fine, but I'm getting the following error for the TranslateTransform bindings:

    System.Windows.Data Error: 2 : Cannot find governing FrameworkElement or FrameworkContentElement for target element. BindingExpression:Path=Offset.X; DataItem=null; target element is 'TranslateTransform' (HashCode=16452547); target property is 'X' (type 'Double')

    Here is the definition of my ItemControl:

    <ItemsControl
        Style="{StaticResource ItemsControlStyle}"
        ItemsSource="{Binding Zones}">
        <ItemsControl.ItemTemplate>
            <DataTemplate>
                <Rectangle Style="{StaticResource RectangleStyle}" />
            </DataTemplate>
        </ItemsControl.ItemTemplate>
    </ItemsControl>
    

    Here is the definition of ItemsControlStyle:

    <Style x:Key="ItemsControlStyle" TargetType="ItemsControl">
        <Setter Property="ItemsPanel">
            <Setter.Value>
                <ItemsPanelTemplate>
                    <Canvas />
                </ItemsPanelTemplate>
            </Setter.Value>
        </Setter>
        <Setter Property="ItemContainerStyle">
            <Setter.Value>
                <Style>
                    <Setter Property="Canvas.Left" Value="{Binding Point.X}" />
                    <Setter Property="Canvas.Top" Value="{Binding Point.Y}" />
                </Style>
            </Setter.Value>
        </Setter>
    </Style>
    

    And here is the definition of RectangleStyle:

    <Style x:Key="RectangleStyle" TargetType="Rectangle">
        <Setter Property="Width" Value="{Binding Size.Width}" />
        <Setter Property="Height" Value="{Binding Size.Height}" />
        <Setter Property="RenderTransform">
            <Setter.Value>
                <!-- these bindings are causing the error -->
                <TranslateTransform X="{Binding Offset.X}" Y="{Binding Offset.Y}" />
            </Setter.Value>
        </Setter>
    </Style>
    

    The two bindings in the RenderTransform setter of RectangleStyle are the cause of the error, but I'm not sure what to do to fix the problem. Interestingly, the graphics are being translated properly, so WPF is able to resolve the bindings--it's just not happy about them for some reason.

    What can I do to fix the bindings?


    Edit

    I submitted a bug report on MS Connect:

    https://connect.microsoft.com/VisualStudio/feedback/details/746840/misleading-cannot-find-governing-frameworkelement-error-message-appears-in-output-window