<?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: Create a Zooming Button Style In Silverlight Without Code</title>
	<atom:link href="http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/</link>
	<description>Matthias Shapiro's WPF &#38; Silverlight Blog - Because Developers Get All The Good Blogs</description>
	<lastBuildDate>Fri, 05 Mar 2010 16:36:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Matthias</title>
		<link>http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/comment-page-1/#comment-2059</link>
		<dc:creator>Matthias</dc:creator>
		<pubDate>Thu, 22 Oct 2009 17:56:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/#comment-2059</guid>
		<description>Andrus, 

You &lt;i&gt;should&lt;/i&gt; be able to go into the button properties and just null out the background. If that doesn&#039;t work, go into the template and either null the background for all the elements or just delete them altogether.</description>
		<content:encoded><![CDATA[<p>Andrus, </p>
<p>You <i>should</i> be able to go into the button properties and just null out the background. If that doesn&#8217;t work, go into the template and either null the background for all the elements or just delete them altogether.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrus</title>
		<link>http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/comment-page-1/#comment-2058</link>
		<dc:creator>Andrus</dc:creator>
		<pubDate>Thu, 22 Oct 2009 17:44:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/#comment-2058</guid>
		<description>How to remove background so that image will be zoomed like in Mac ?</description>
		<content:encoded><![CDATA[<p>How to remove background so that image will be zoomed like in Mac ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron</title>
		<link>http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/comment-page-1/#comment-1021</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Mon, 06 Oct 2008 05:21:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/#comment-1021</guid>
		<description>Crap, I cant seem to get it to function correctly in WPF. I can get the MouseEnter event to enlarge the images, but the MouseLeave event doesn&#039;t seem to trigger the event to shrink it back to its original size.</description>
		<content:encoded><![CDATA[<p>Crap, I cant seem to get it to function correctly in WPF. I can get the MouseEnter event to enlarge the images, but the MouseLeave event doesn&#8217;t seem to trigger the event to shrink it back to its original size.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron</title>
		<link>http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/comment-page-1/#comment-1016</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Sat, 04 Oct 2008 01:12:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/#comment-1016</guid>
		<description>Matthias,

Thank you for the reply. I am trying this now. I hope I can get it to work as this is great eye candy. ;)</description>
		<content:encoded><![CDATA[<p>Matthias,</p>
<p>Thank you for the reply. I am trying this now. I hope I can get it to work as this is great eye candy. <img src='http://www.designerwpf.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthias Shapiro</title>
		<link>http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/comment-page-1/#comment-1012</link>
		<dc:creator>Matthias Shapiro</dc:creator>
		<pubDate>Fri, 03 Oct 2008 04:17:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/#comment-1012</guid>
		<description>WPF doesn&#039;t have the visual state manager that Silverlight has, so this exact approach wouldn&#039;t work. 

You could do it in WPF, but you would do it with Event Triggers, which are accessible in the control templates. Basically, once you get into the button control template (using the same method here), create an event trigger for the MouseOver event and create the same kind of animation zooming the button. Make sure you create another shrinking animation for the MouseOut event.</description>
		<content:encoded><![CDATA[<p>WPF doesn&#8217;t have the visual state manager that Silverlight has, so this exact approach wouldn&#8217;t work. </p>
<p>You could do it in WPF, but you would do it with Event Triggers, which are accessible in the control templates. Basically, once you get into the button control template (using the same method here), create an event trigger for the MouseOver event and create the same kind of animation zooming the button. Make sure you create another shrinking animation for the MouseOut event.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron</title>
		<link>http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/comment-page-1/#comment-1010</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Fri, 03 Oct 2008 03:19:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/#comment-1010</guid>
		<description>Will this work in WPF for WinForms or does this have to be for Silverlight?</description>
		<content:encoded><![CDATA[<p>Will this work in WPF for WinForms or does this have to be for Silverlight?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fallon Massey</title>
		<link>http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/comment-page-1/#comment-1000</link>
		<dc:creator>Fallon Massey</dc:creator>
		<pubDate>Tue, 30 Sep 2008 07:28:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/#comment-1000</guid>
		<description>Thanks Matthias!</description>
		<content:encoded><![CDATA[<p>Thanks Matthias!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 2008 September 29 - Links for today &#171; My (almost) Daily Links</title>
		<link>http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/comment-page-1/#comment-995</link>
		<dc:creator>2008 September 29 - Links for today &#171; My (almost) Daily Links</dc:creator>
		<pubDate>Mon, 29 Sep 2008 06:53:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/#comment-995</guid>
		<description>[...] Matthias Shapiro brings us a gorgeous Zooming Button Style In Silverlight Without Code [...]</description>
		<content:encoded><![CDATA[<p>[...] Matthias Shapiro brings us a gorgeous Zooming Button Style In Silverlight Without Code [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthias Shapiro</title>
		<link>http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/comment-page-1/#comment-991</link>
		<dc:creator>Matthias Shapiro</dc:creator>
		<pubDate>Sun, 28 Sep 2008 05:45:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/#comment-991</guid>
		<description>I put it up at the top. Hope that helps.</description>
		<content:encoded><![CDATA[<p>I put it up at the top. Hope that helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fallon Massey</title>
		<link>http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/comment-page-1/#comment-990</link>
		<dc:creator>Fallon Massey</dc:creator>
		<pubDate>Sun, 28 Sep 2008 05:03:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/#comment-990</guid>
		<description>Is there a project/solution for this?</description>
		<content:encoded><![CDATA[<p>Is there a project/solution for this?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
