Storyboards cant find ControlTemplate elments. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T22:07:25Z http://stackoverflow.com/feeds/question/151752 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/151752/storyboards-cant-find-controltemplate-elments 4 Storyboards cant find ControlTemplate elments. Kris Erickson 2008-09-30T04:25:21Z 2008-10-02T18:55:52Z <p>I've created some fairly simple XAML, and it works perfectly (at least in KAXML). The storyboards run perfectly when called from within the XAML, but when I try to access them from outside I get the error:</p> <pre><code>'buttonGlow' name cannot be found in the name scope of 'System.Windows.Controls.Button'. </code></pre> <p>I am loading the XAML with a stream reader, like this:</p> <pre><code>Button x = (Button)XamlReader.Load(stream); </code></pre> <p>And trying to run the Storyboard with: </p> <pre><code>Storyboard pressedButtonStoryboard = Storyboard)_xamlButton.Template.Resources["ButtonPressed"]; pressedButtonStoryboard.Begin(_xamlButton); </code></pre> <p>I think that the problem is that fields I am animating are in the template and that storyboard is accessing the button. </p> <p>Here is the XAML:</p> <pre><code>&lt;Button xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:customControls="clr-namespace:pk_rodoment.SkinningEngine;assembly=pk_rodoment" Width="150" Height="55"&gt; &lt;Button.Resources&gt; &lt;Style TargetType="Button"&gt; &lt;Setter Property="Control.Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="Button"&gt; &lt;Grid Background="#00FFFFFF"&gt; &lt;Grid.BitmapEffect&gt; &lt;BitmapEffectGroup&gt; &lt;OuterGlowBitmapEffect x:Name="buttonGlow" GlowColor="#A0FEDF00" GlowSize="0"/&gt; &lt;/BitmapEffectGroup&gt; &lt;/Grid.BitmapEffect&gt; &lt;Border x:Name="background" Margin="1,1,1,1" CornerRadius="15"&gt; &lt;Border.Background&gt; &lt;SolidColorBrush Color="#FF0062B6"/&gt; &lt;/Border.Background&gt; &lt;/Border&gt; &lt;ContentPresenter HorizontalAlignment="Center" Margin="{TemplateBinding Control.Padding}" VerticalAlignment="Center" Content="{TemplateBinding ContentControl.Content}" ContentTemplate="{TemplateBinding ContentControl.ContentTemplate}"/&gt; &lt;/Grid&gt; &lt;ControlTemplate.Resources&gt; &lt;Storyboard x:Key="ButtonPressed"&gt; &lt;Storyboard.Children&gt; &lt;DoubleAnimation Duration="0:0:0.4" FillBehavior="HoldEnd" Storyboard.TargetName="buttonGlow" Storyboard.TargetProperty="GlowSize" To="4"/&gt; &lt;ColorAnimation Duration="0:0:0.6" FillBehavior="HoldEnd" Storyboard.TargetName="background" Storyboard.TargetProperty="(Panel.Background).(SolidColorBrush.Color)" To="#FF844800"/&gt; &lt;/Storyboard.Children&gt; &lt;/Storyboard&gt; &lt;Storyboard x:Key="ButtonReleased"&gt; &lt;Storyboard.Children&gt; &lt;DoubleAnimation Duration="0:0:0.2" FillBehavior="HoldEnd" Storyboard.TargetName="buttonGlow" Storyboard.TargetProperty="GlowSize" To="0"/&gt; &lt;ColorAnimation Duration="0:0:0.2" FillBehavior="Stop" Storyboard.TargetName="background" Storyboard.TargetProperty="(Panel.Background).(SolidColorBrush.Color)" To="#FF0062B6"/&gt; &lt;/Storyboard.Children&gt; &lt;/Storyboard&gt; &lt;/ControlTemplate.Resources&gt; &lt;ControlTemplate.Triggers&gt; &lt;Trigger Property="ButtonBase.IsPressed" Value="True"&gt; &lt;Trigger.EnterActions&gt; &lt;BeginStoryboard Storyboard="{StaticResource ButtonPressed}"/&gt; &lt;/Trigger.EnterActions&gt; &lt;Trigger.ExitActions&gt; &lt;BeginStoryboard Storyboard="{StaticResource ButtonReleased}"/&gt; &lt;/Trigger.ExitActions&gt; &lt;/Trigger&gt; &lt;/ControlTemplate.Triggers&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; &lt;/Button.Resources&gt; &lt;DockPanel&gt; &lt;TextBlock x:Name="TextContent" FontSize="28" Foreground="White" &gt;Test&lt;/TextBlock&gt; &lt;/DockPanel&gt; &lt;/Button&gt; </code></pre> <p>Any suggestions from anyone who understands WPF and XAML a lot better than me?</p> <p>Here is the error stacktrace:</p> <pre><code>at System.Windows.Media.Animation.Storyboard.ResolveTargetName(String targetName, INameScope nameScope, DependencyObject element) at System.Windows.Media.Animation.Storyboard.ClockTreeWalkRecursive(Clock currentClock, DependencyObject containingObject, INameScope nameScope, DependencyObject parentObject, String parentObjectName, PropertyPath parentPropertyPath, HandoffBehavior handoffBehavior, HybridDictionary clockMappings, Int64 layer) at System.Windows.Media.Animation.Storyboard.ClockTreeWalkRecursive(Clock currentClock, DependencyObject containingObject, INameScope nameScope, DependencyObject parentObject, String parentObjectName, PropertyPath parentPropertyPath, HandoffBehavior handoffBehavior, HybridDictionary clockMappings, Int64 layer) at System.Windows.Media.Animation.Storyboard.BeginCommon(DependencyObject containingObject, INameScope nameScope, HandoffBehavior handoffBehavior, Boolean isControllable, Int64 layer) at System.Windows.Media.Animation.Storyboard.Begin(FrameworkElement containingObject) at pk_rodoment.SkinningEngine.ButtonControlWPF._button_MouseDown(Object sender, MouseButtonEventArgs e) at System.Windows.Input.MouseButtonEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget) at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target) at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs) at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised) at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args) at System.Windows.UIElement.RaiseEvent(RoutedEventArgs args, Boolean trusted) at System.Windows.Input.InputManager.ProcessStagingArea() at System.Windows.Input.InputManager.ProcessInput(InputEventArgs input) at System.Windows.Input.InputProviderSite.ReportInput(InputReport inputReport) at System.Windows.Interop.HwndMouseInputProvider.ReportInput(IntPtr hwnd, InputMode mode, Int32 timestamp, RawMouseActions actions, Int32 x, Int32 y, Int32 wheel) at System.Windows.Interop.HwndMouseInputProvider.FilterMessage(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean&amp; handled) at System.Windows.Interop.HwndSource.InputFilterMessage(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean&amp; handled) at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean&amp; handled) at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o) at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Boolean isSingleParameter) at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler) at System.Windows.Threading.Dispatcher.WrappedInvoke(Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler) at System.Windows.Threading.Dispatcher.InvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Boolean isSingleParameter) at System.Windows.Threading.Dispatcher.Invoke(DispatcherPriority priority, Delegate method, Object arg) at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam) at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG&amp; msg) at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame) at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame) at System.Windows.Threading.Dispatcher.Run() at System.Windows.Application.RunDispatcher(Object ignore) at System.Windows.Application.RunInternal(Window window) at System.Windows.Application.Run(Window window) at System.Windows.Application.Run() at ControlTestbed.App.Main() in C:\svnprojects\rodomont\ControlsTestbed\obj\Debug\App.g.cs:line 0 at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args) at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() at System.Threading.ThreadHelper.ThreadStart_Context(Object state) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading.ThreadHelper.ThreadStart() </code></pre> http://stackoverflow.com/questions/151752/storyboards-cant-find-controltemplate-elments/154114#154114 1 Answer by cplotts for Storyboards cant find ControlTemplate elments. cplotts 2008-09-30T17:32:09Z 2008-10-02T18:55:52Z <p>I think just had this problem.</p> <p>Let me refer you to my blog entry on the matter: <a href="http://cplotts.wordpress.com/2008/09/26/dr-wpf-namescopes/" rel="nofollow">http://cplotts.wordpress.com/2008/09/26/dr-wpf-namescopes/</a></p> <p>Basically, the trick is that you need to call Begin with an argument that is an object in the same name scope that the storyboards are targeting.</p> <p>In particular, from your sample above, I would try to call Begin and send in a reference to the _background element in your template.</p> <p>Let me know if this doesn't solve your problem.</p> <p><strong>Update:</strong> <p> I like Erickson's solution better than mine ... and it worked for me too. I don't know how I missed that overload of the Begin method!</p> http://stackoverflow.com/questions/151752/storyboards-cant-find-controltemplate-elments/154189#154189 7 Answer by Kris Erickson for Storyboards cant find ControlTemplate elments. Kris Erickson 2008-09-30T17:49:40Z 2008-09-30T17:49:40Z <p>Finally found it. When you call Begin on storyboards that reference elements in the ControlTemplate, you must pass in the control template as well.</p> <p>Changing:</p> <pre><code>pressedButtonStoryboard.Begin(_xamlButton); </code></pre> <p>To:</p> <pre><code>pressedButtonStoryboard.Begin(_xamlButton, _xamlButton.Template); </code></pre> <p>Fixed everything.</p> http://stackoverflow.com/questions/151752/storyboards-cant-find-controltemplate-elments/154203#154203 1 Answer by Joel B Fant for Storyboards cant find ControlTemplate elments. Joel B Fant 2008-09-30T17:53:02Z 2008-09-30T17:53:02Z <p>I made it work by restructuring the XAML so that the <code>SolidColorBrush</code> and <code>OuterGlowBitmapEffect</code> were resources of the button and thus referenced are shared by the <code>Storyboard</code>s and the elements they're applied to. I retrieved the <code>Storyboard</code> and called <code>Begin()</code> on it just as you did, but here is the modified XAML for the <code>Button</code>:</p> <p>(Please note the keys <code>"buttonGlow"</code> and <code>"borderBackground"</code> and all <code>StaticResource</code> markup extensions referencing them.)</p> <pre><code>&lt;Button xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="150" Height="55"&gt; &lt;Button.Resources&gt; &lt;OuterGlowBitmapEffect x:Key="buttonGlow" GlowColor="#A0FEDF00" GlowSize="0" /&gt; &lt;SolidColorBrush x:Key="borderBackground" Color="#FF0062B6" /&gt; &lt;Style TargetType="Button"&gt; &lt;Setter Property="Control.Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="Button"&gt; &lt;Grid Name="outerGrid" Background="#00FFFFFF" BitmapEffect="{StaticResource buttonGlow}"&gt; &lt;Border x:Name="background" Margin="1,1,1,1" CornerRadius="15" Background="{StaticResource borderBackground}"&gt; &lt;/Border&gt; &lt;ContentPresenter HorizontalAlignment="Center" Margin="{TemplateBinding Control.Padding}" VerticalAlignment="Center" Content="{TemplateBinding ContentControl.Content}" ContentTemplate="{TemplateBinding ContentControl.ContentTemplate}" /&gt; &lt;/Grid&gt; &lt;ControlTemplate.Resources&gt; &lt;Storyboard x:Key="ButtonPressed"&gt; &lt;Storyboard.Children&gt; &lt;DoubleAnimation Duration="0:0:0.4" FillBehavior="HoldEnd" Storyboard.Target="{StaticResource buttonGlow}" Storyboard.TargetProperty="GlowSize" To="4" /&gt; &lt;ColorAnimation Duration="0:0:0.6" FillBehavior="HoldEnd" Storyboard.Target="{StaticResource borderBackground}" Storyboard.TargetProperty="Color" To="#FF844800" /&gt; &lt;/Storyboard.Children&gt; &lt;/Storyboard&gt; &lt;Storyboard x:Key="ButtonReleased"&gt; &lt;Storyboard.Children&gt; &lt;DoubleAnimation Duration="0:0:0.2" FillBehavior="HoldEnd" Storyboard.Target="{StaticResource buttonGlow}" Storyboard.TargetProperty="GlowSize" To="0" /&gt; &lt;ColorAnimation Duration="0:0:0.2" FillBehavior="Stop" Storyboard.Target="{StaticResource borderBackground}" Storyboard.TargetProperty="Color" To="#FF0062B6" /&gt; &lt;/Storyboard.Children&gt; &lt;/Storyboard&gt; &lt;/ControlTemplate.Resources&gt; &lt;ControlTemplate.Triggers&gt; &lt;Trigger Property="ButtonBase.IsPressed" Value="True"&gt; &lt;Trigger.EnterActions&gt; &lt;BeginStoryboard Storyboard="{StaticResource ButtonPressed}" /&gt; &lt;/Trigger.EnterActions&gt; &lt;Trigger.ExitActions&gt; &lt;BeginStoryboard Storyboard="{StaticResource ButtonReleased}" /&gt; &lt;/Trigger.ExitActions&gt; &lt;/Trigger&gt; &lt;/ControlTemplate.Triggers&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; &lt;/Button.Resources&gt; &lt;DockPanel&gt; &lt;TextBlock x:Name="TextContent" FontSize="28" Foreground="White"&gt;Test&lt;/TextBlock&gt; &lt;/DockPanel&gt; &lt;/Button&gt; </code></pre>