I have created a usercontrol which is supposed to flip it's content whenever a value is changed. The value is the id of the object which is reached through a dependency property on the control itself.

Here's the XAML:

<UserControl.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
        [...]
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
</UserControl.Resources>

<Grid x:Name="layoutRoot" >

<telerik:RadRibbonGroup Width="1" />

<telerik:RadRibbonGroup x:Name="contextRadRibbonGroup" 
                        Header="{Binding Header, ElementName=ucThis}"
                         HorizontalAlignment="Stretch"
                         HorizontalContentAlignment="Stretch">

    <Border x:Name="contextBorder"
            Margin="2"
            Background="Transparent"
            VerticalAlignment="Stretch"
            HorizontalAlignment="Center"
            Visibility="{Binding Path=RadRibbonTab.IsSelected, ElementName=ucThis,Converter={StaticResource False2Collapsed}}"
            RenderTransformOrigin="0.5,0.5">

        <Border.RenderTransform>
            <ScaleTransform x:Name="myScaleTransform"
                             ScaleX="1"
                             ScaleY="1"
                             CenterX="10"
                             CenterY="10" />
        </Border.RenderTransform>

        <Border.Triggers>
            <EventTrigger RoutedEvent="TextBox.TextChanged"
                          SourceName="idTextBox">
                <BeginStoryboard x:Name="contextStoryBoard">
                    <Storyboard>

                        <DoubleAnimation Storyboard.TargetName="myScaleTransform"
                                         Storyboard.TargetProperty="(ScaleTransform.ScaleY)"
                                         From="1"
                                         To="0"
                                         Duration="0:0:0.6"
                                         AutoReverse="True" />

                    </Storyboard>
                </BeginStoryboard>
            </EventTrigger>
        </Border.Triggers>

        <Grid>
            <ContentPresenter Visibility="{Binding Path=Entity, ElementName=ucThis, Converter={StaticResource Null2Hidden}}"
                          x:Name="PART_ContentControl"
                          Content="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=Content}">
        </ContentPresenter>

            <!-- Id Field used to initiate animation - it has no height or width -->
            <TextBox  IsReadOnly="True"
                      x:Name="idTextBox"
                      Text="{Binding ID, ElementName=ucThis, Mode=OneWay}"
                      Margin="2, 0"
                      Width="0"
                      Height="0" />
        </Grid>
    </Border>
</telerik:RadRibbonGroup>

</Grid>

My usercontrols has dependency properties for Header, ID, RadRibbonTab and entity (which holds the id for which changes means that the scaletransform starts).

My problem is that it throws an exception when the id changes it's value: InvalidOperationException: 'myScaleTransform' name cannot be found in the name scope of 'System.Windows.Controls.Border'.

This code worked from my main window before I put it into it's own usercontrol - though I did make (what I thought to be) minor changes.

I run .Net 4 (WPF).

link|improve this question
What are the changes you made? – Phil Gan Jul 14 '11 at 8:58
did you try do change x:Name="myScaleTransform" to Name="myScaleTransform" ? – Alex Maker Sep 12 '11 at 19:11
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.