<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: How to dynamically create animations from C# in Silverlight</title>
	<atom:link href="http://www.85turns.com/2008/03/09/how-to-dynamically-create-animations-from-c-in-silverlight/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.85turns.com/2008/03/09/how-to-dynamically-create-animations-from-c-in-silverlight/</link>
	<description>Silverlight made Simple</description>
	<pubDate>Sun, 14 Mar 2010 08:26:14 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Terry Clancy</title>
		<link>http://www.85turns.com/2008/03/09/how-to-dynamically-create-animations-from-c-in-silverlight/comment-page-1/#comment-993</link>
		<dc:creator>Terry Clancy</dc:creator>
		<pubDate>Wed, 30 Sep 2009 03:26:22 +0000</pubDate>
		<guid isPermaLink="false">http://simplesilverlight.wordpress.com/?p=19#comment-993</guid>
		<description>Sorry for basic question......

I don't understand the line
Storyboard.SetTarget(daTranslateTransformX, Layoutroot.Childerent[0]);
"stb" is the instance of the Class Storyboard  why isn't this line
stb.SetTarget(daTranslateTransformX, Layoutroot.Childerent[0]);
????
Clearly I am not understanding something.

Terry</description>
		<content:encoded><![CDATA[<p>Sorry for basic question&#8230;&#8230;</p>
<p>I don&#8217;t understand the line<br />
Storyboard.SetTarget(daTranslateTransformX, Layoutroot.Childerent[0]);<br />
&#8220;stb&#8221; is the instance of the Class Storyboard  why isn&#8217;t this line<br />
stb.SetTarget(daTranslateTransformX, Layoutroot.Childerent[0]);<br />
????<br />
Clearly I am not understanding something.</p>
<p>Terry</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rishi</title>
		<link>http://www.85turns.com/2008/03/09/how-to-dynamically-create-animations-from-c-in-silverlight/comment-page-1/#comment-984</link>
		<dc:creator>rishi</dc:creator>
		<pubDate>Wed, 23 Sep 2009 13:13:32 +0000</pubDate>
		<guid isPermaLink="false">http://simplesilverlight.wordpress.com/?p=19#comment-984</guid>
		<description>Hi i was trying to have just a single translate transform on an UIelement, not a group:So i changed the following line:StoryBoard.SetTargetProperty(daTranslateTransformx,"(UiElement.RenderTransform).(TransformGroup.Children[0].(TranslateTransform.X))" to&#160;StoryBoard.SetTargetProperty(daTranslateTransformx,"myImage.RenderTransform.TranslateTransform.X)" but some how I didn't get it right,but there is some thing wrong with this as I am not able to get it to work.Please reply asap.Thanks</description>
		<content:encoded><![CDATA[<p>Hi i was trying to have just a single translate transform on an UIelement, not a group:So i changed the following line:StoryBoard.SetTargetProperty(daTranslateTransformx,&#8221;(UiElement.RenderTransform).(TransformGroup.Children[0].(TranslateTransform.X))&#8221; to&nbsp;StoryBoard.SetTargetProperty(daTranslateTransformx,&#8221;myImage.RenderTransform.TranslateTransform.X)&#8221; but some how I didn&#8217;t get it right,but there is some thing wrong with this as I am not able to get it to work.Please reply asap.Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rosie</title>
		<link>http://www.85turns.com/2008/03/09/how-to-dynamically-create-animations-from-c-in-silverlight/comment-page-1/#comment-133</link>
		<dc:creator>Rosie</dc:creator>
		<pubDate>Thu, 31 Jul 2008 19:56:18 +0000</pubDate>
		<guid isPermaLink="false">http://simplesilverlight.wordpress.com/?p=19#comment-133</guid>
		<description>Hi,

The above error is caused by differences between Silverlight 2 Beta 1 and Silverlight 2 Beta 2.  Please use the following:

Storyboard.SetTargetProperty(daTranslatedTransform, new PropertyPath("&lt;&lt;everything between the quotes"));

http://msdn.microsoft.com/en-us/library/cc645049(VS.95).aspx#SetTargetProperty_and_GetTargetProperty</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>The above error is caused by differences between Silverlight 2 Beta 1 and Silverlight 2 Beta 2.  Please use the following:</p>
<p>Storyboard.SetTargetProperty(daTranslatedTransform, new PropertyPath(&#8221;&lt;&lt;everything between the quotes&#8221;));</p>
<p><a href="http://msdn.microsoft.com/en-us/library/cc645049" rel="nofollow">http://msdn.microsoft.com/en-us/library/cc645049</a>(VS.95).aspx#SetTargetProperty_and_GetTargetProperty</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abhishek Goel</title>
		<link>http://www.85turns.com/2008/03/09/how-to-dynamically-create-animations-from-c-in-silverlight/comment-page-1/#comment-132</link>
		<dc:creator>Abhishek Goel</dc:creator>
		<pubDate>Fri, 18 Jul 2008 06:08:16 +0000</pubDate>
		<guid isPermaLink="false">http://simplesilverlight.wordpress.com/?p=19#comment-132</guid>
		<description>Hello I ma getting the error posted above. plz tell me how to resolve these errors.

Thank You,
Abhishek</description>
		<content:encoded><![CDATA[<p>Hello I ma getting the error posted above. plz tell me how to resolve these errors.</p>
<p>Thank You,<br />
Abhishek</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abhishek Goel</title>
		<link>http://www.85turns.com/2008/03/09/how-to-dynamically-create-animations-from-c-in-silverlight/comment-page-1/#comment-131</link>
		<dc:creator>Abhishek Goel</dc:creator>
		<pubDate>Fri, 18 Jul 2008 06:07:21 +0000</pubDate>
		<guid isPermaLink="false">http://simplesilverlight.wordpress.com/?p=19#comment-131</guid>
		<description>Error	1	The best overloaded method match for 'System.Windows.Media.Animation.Storyboard.SetTargetProperty(System.Windows.Media.Animation.Timeline, System.Windows.PropertyPath)' has some invalid arguments

Error	2	Argument '2': cannot convert from 'string' to 'System.Windows.PropertyPath'

Error	3	The best overloaded method match for 'System.Windows.Media.Animation.Storyboard.SetTargetProperty(System.Windows.Media.Animation.Timeline, System.Windows.PropertyPath)' has some invalid arguments

Error	4	Argument '2': cannot convert from 'string' to 'System.Windows.PropertyPath'


Warning	5	Unable to update auto-refresh reference 'system.web.silverlight.dll'. Cannot find assembly 'C:\Documents and Settings\Program Files\Microsoft SDKs\Silverlight\v2.0\Libraries\Server\System.Web.Silverlight.dll'.

Thank You,
Abhishek</description>
		<content:encoded><![CDATA[<p>Error	1	The best overloaded method match for &#8216;System.Windows.Media.Animation.Storyboard.SetTargetProperty(System.Windows.Media.Animation.Timeline, System.Windows.PropertyPath)&#8217; has some invalid arguments</p>
<p>Error	2	Argument &#8216;2&#8242;: cannot convert from &#8217;string&#8217; to &#8216;System.Windows.PropertyPath&#8217;</p>
<p>Error	3	The best overloaded method match for &#8216;System.Windows.Media.Animation.Storyboard.SetTargetProperty(System.Windows.Media.Animation.Timeline, System.Windows.PropertyPath)&#8217; has some invalid arguments</p>
<p>Error	4	Argument &#8216;2&#8242;: cannot convert from &#8217;string&#8217; to &#8216;System.Windows.PropertyPath&#8217;</p>
<p>Warning	5	Unable to update auto-refresh reference &#8217;system.web.silverlight.dll&#8217;. Cannot find assembly &#8216;C:\Documents and Settings\Program Files\Microsoft SDKs\Silverlight\v2.0\Libraries\Server\System.Web.Silverlight.dll&#8217;.</p>
<p>Thank You,<br />
Abhishek</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abhishek Goel</title>
		<link>http://www.85turns.com/2008/03/09/how-to-dynamically-create-animations-from-c-in-silverlight/comment-page-1/#comment-130</link>
		<dc:creator>Abhishek Goel</dc:creator>
		<pubDate>Fri, 18 Jul 2008 06:01:49 +0000</pubDate>
		<guid isPermaLink="false">http://simplesilverlight.wordpress.com/?p=19#comment-130</guid>
		<description>Hello, I have tried your code om my PC but there are 4 error in that code. Can you plz tell me how to resolve these error. Thses errors are:

Error1	The best overloaded method match for

'System.Windows.Media.Animation.Storyboard.SetTargetProperty(System.Windows.Media.Animation.Timeline,

System.Windows.PropertyPath)' has some invalid arguments


Error	2	Argument '2': cannot convert from 'string' to 'System.Windows.PropertyPath'

Error3	The best overloaded method match for

'System.Windows.Media.Animation.Storyboard.SetTargetProperty(System.Windows.Media.Animation.Timeline,

System.Windows.PropertyPath)' has some invalid arguments

Error4	Argument '2': cannot convert from 'string' to 'System.Windows.PropertyPath'


Warning	5	Unable to update auto-refresh reference 'system.web.silverlight.dll'. Cannot find assembly

'C:\Documents and Settings\Program Files\Microsoft

SDKs\Silverlight\v2.0\Libraries\Server\System.Web.Silverlight.dll'.
C:\...\Animation_Web\

Plz tell me about that. Thank you.

Abhishek</description>
		<content:encoded><![CDATA[<p>Hello, I have tried your code om my PC but there are 4 error in that code. Can you plz tell me how to resolve these error. Thses errors are:</p>
<p>Error1	The best overloaded method match for</p>
<p>&#8216;System.Windows.Media.Animation.Storyboard.SetTargetProperty(System.Windows.Media.Animation.Timeline,</p>
<p>System.Windows.PropertyPath)&#8217; has some invalid arguments</p>
<p>Error	2	Argument &#8216;2&#8242;: cannot convert from &#8217;string&#8217; to &#8216;System.Windows.PropertyPath&#8217;</p>
<p>Error3	The best overloaded method match for</p>
<p>&#8216;System.Windows.Media.Animation.Storyboard.SetTargetProperty(System.Windows.Media.Animation.Timeline,</p>
<p>System.Windows.PropertyPath)&#8217; has some invalid arguments</p>
<p>Error4	Argument &#8216;2&#8242;: cannot convert from &#8217;string&#8217; to &#8216;System.Windows.PropertyPath&#8217;</p>
<p>Warning	5	Unable to update auto-refresh reference &#8217;system.web.silverlight.dll&#8217;. Cannot find assembly</p>
<p>&#8216;C:\Documents and Settings\Program Files\Microsoft</p>
<p>SDKs\Silverlight\v2.0\Libraries\Server\System.Web.Silverlight.dll&#8217;.<br />
C:\&#8230;\Animation_Web\</p>
<p>Plz tell me about that. Thank you.</p>
<p>Abhishek</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Kolonay</title>
		<link>http://www.85turns.com/2008/03/09/how-to-dynamically-create-animations-from-c-in-silverlight/comment-page-1/#comment-129</link>
		<dc:creator>Michael Kolonay</dc:creator>
		<pubDate>Thu, 03 Jul 2008 16:31:29 +0000</pubDate>
		<guid isPermaLink="false">http://simplesilverlight.wordpress.com/?p=19#comment-129</guid>
		<description>Hello,

Thanks for the great example. It has been very helpful...is there any chance of posting part 2?  I'm trying to do just that, animate a scale programmatically and I'm finding it tough going.

Thanks again.</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>Thanks for the great example. It has been very helpful&#8230;is there any chance of posting part 2?  I&#8217;m trying to do just that, animate a scale programmatically and I&#8217;m finding it tough going.</p>
<p>Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Animate Silverlight 2 object from 1 line of code &#171; Silveright made simple</title>
		<link>http://www.85turns.com/2008/03/09/how-to-dynamically-create-animations-from-c-in-silverlight/comment-page-1/#comment-128</link>
		<dc:creator>Animate Silverlight 2 object from 1 line of code &#171; Silveright made simple</dc:creator>
		<pubDate>Fri, 14 Mar 2008 02:35:39 +0000</pubDate>
		<guid isPermaLink="false">http://simplesilverlight.wordpress.com/?p=19#comment-128</guid>
		<description>[...] Silverlight 2 object from 1 line of&#160;code    Posted March 14, 2008    In a previous post about how to create animations dynamically, I showed how to add StoryBoards from C#. I have extracted this logic into a class called [...]</description>
		<content:encoded><![CDATA[<p>[...] Silverlight 2 object from 1 line of&nbsp;code    Posted March 14, 2008    In a previous post about how to create animations dynamically, I showed how to add StoryBoards from C#. I have extracted this logic into a class called [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Hayat</title>
		<link>http://www.85turns.com/2008/03/09/how-to-dynamically-create-animations-from-c-in-silverlight/comment-page-1/#comment-126</link>
		<dc:creator>Ben Hayat</dc:creator>
		<pubDate>Mon, 10 Mar 2008 17:12:59 +0000</pubDate>
		<guid isPermaLink="false">http://simplesilverlight.wordpress.com/?p=19#comment-126</guid>
		<description>Thanks Corey, but I still loved the work you did!</description>
		<content:encoded><![CDATA[<p>Thanks Corey, but I still loved the work you did!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cschuman</title>
		<link>http://www.85turns.com/2008/03/09/how-to-dynamically-create-animations-from-c-in-silverlight/comment-page-1/#comment-125</link>
		<dc:creator>cschuman</dc:creator>
		<pubDate>Mon, 10 Mar 2008 05:10:50 +0000</pubDate>
		<guid isPermaLink="false">http://simplesilverlight.wordpress.com/?p=19#comment-125</guid>
		<description>Hey Ben,

Thanks for the comment.  Creating animations from code behind was very challenging to figure out.  What I really wanted to was something like my WPF Animation post.

This technique was based on a sample from some guys at Microsoft.  I don't think there is documentation or guidelines (other than this post).

I am working on porting this code over to a small/light weight API.  The goal is animate an object with a single line of code while still using the Silverlight animation engine.

Thanks,
Corey</description>
		<content:encoded><![CDATA[<p>Hey Ben,</p>
<p>Thanks for the comment.  Creating animations from code behind was very challenging to figure out.  What I really wanted to was something like my WPF Animation post.</p>
<p>This technique was based on a sample from some guys at Microsoft.  I don&#8217;t think there is documentation or guidelines (other than this post).</p>
<p>I am working on porting this code over to a small/light weight API.  The goal is animate an object with a single line of code while still using the Silverlight animation engine.</p>
<p>Thanks,<br />
Corey</p>
]]></content:encoded>
	</item>
</channel>
</rss>
