<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Silverlike &#187; Skin</title>
	<atom:link href="http://silverlike.net/tag/skin/feed/" rel="self" type="application/rss+xml" />
	<link>http://silverlike.net</link>
	<description>We Like Silverlight</description>
	<lastBuildDate>Mon, 07 Dec 2009 06:34:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Glow Theme</title>
		<link>http://silverlike.net/glow-theme/</link>
		<comments>http://silverlike.net/glow-theme/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 17:43:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[Skin]]></category>

		<guid isPermaLink="false">http://silverlike.net/glow-theme/</guid>
		<description><![CDATA[A Glow Theme shared by Nova Software. Clean and Clear!]]></description>
			<content:encoded><![CDATA[<p> A Glow Theme shared by <a href="http://www.dotnetoutsource.com/Download/Silverlight/GlowTheme.aspx" target="_blank">Nova Software</a>. Clean and Clear!</p>
<p class="image"><a href="http://www.dotnetoutsource.com/Download/Silverlight/GlowTheme.aspx" target="_blank"><img style="display: inline" title="Glow Theme" alt="Glow Theme" src="http://silverlike.net/wp-content/uploads/2009/11/GlowTheme.jpg" width="450" height="250" /></a> </p>
<div class="demo-area">Silverlight Demo: <a class="new-window" href="http://silverlike.net/silverlight/index.php?xap=%2Fwp-content%2Fuploads%2Fxap%2FNovaThemes.Test.xap&TB_iframe=true&caption=Glow+Theme&height=400&width=650" target="_blank">Click here to view</a></div>
<div class="reference-info"><strong>Website:</strong> <a href="http://silverlike.net/glow-theme/" title="http://silverlike.net/glow-theme/" target="_blank">Click here</a></div>
<div class="reference-info"><strong>Download:</strong> <a href="http://silverlike.net/glow-theme/" title="http://silverlike.net/glow-theme/" target="_blank">Click here</a></div>
<img src="http://silverlike.net/?ak_action=api_record_view&id=869&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://silverlike.net/glow-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Glass Border Style Button</title>
		<link>http://silverlike.net/glass-border-style-button/</link>
		<comments>http://silverlike.net/glass-border-style-button/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 13:45:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[Skin]]></category>

		<guid isPermaLink="false">http://silverlike.net/glass-border-style-button/</guid>
		<description><![CDATA[Below is a code snippet which can make your button looks more artistic. Code shared by Antoni Dol.]]></description>
			<content:encoded><![CDATA[<p>Below is a code snippet which can make your button looks more artistic. Code shared by <a href="http://www.sixin.nl/antoni-dol-blog/09-11-15/Silverlight_Style_GlassBorderStyle.aspx" target="_blank">Antoni Dol</a>.</p>
<p class="image"><a href="http://www.sixin.nl/antoni-dol-blog/09-11-15/Silverlight_Style_GlassBorderStyle.aspx" target="_blank"><img style="display: inline" title="Glass Border Style Button" alt="Glass Border Style Button" src="http://silverlike.net/wp-content/uploads/2009/11/GlassBorderStyleButton.jpg" width="450" height="250" /></a> </p>
<div class="demo-area">Silverlight Demo: <a class="new-window" href="http://silverlike.net/silverlight/index.php?xap=%2Fwp-content%2Fuploads%2Fxap%2FGlassBorderStyle.xap&TB_iframe=true&caption=Glass+Border+Style+Button&height=400&width=650" target="_blank">Click here to view</a></div>
<div class="reference-info"><strong>Website:</strong> <a href="http://silverlike.net/glass-border-style-button/" title="http://silverlike.net/glass-border-style-button/" target="_blank">Click here</a></div>
<div class="xaml-area">Code Snippet: </div>
<pre class="brush: xml;">
&lt;Style x:Key=&quot;GlassBorderStyle&quot; TargetType=&quot;Border&quot;&gt;
    &lt;Setter Property=&quot;BorderThickness&quot; Value=&quot;2&quot;/&gt;
    &lt;Setter Property=&quot;Padding&quot; Value=&quot;5&quot;/&gt;
    &lt;Setter Property=&quot;Background&quot;&gt;
        &lt;Setter.Value&gt;
            &lt;LinearGradientBrush EndPoint=&quot;0.75,1&quot; StartPoint=&quot;0.25,0&quot;&gt;
                &lt;GradientStop Color=&quot;#33FFFFFF&quot; Offset=&quot;0&quot;/&gt;
                &lt;GradientStop Color=&quot;#C0FFFFFF&quot; Offset=&quot;0.287&quot;/&gt;
                &lt;GradientStop Color=&quot;#4011322D&quot; Offset=&quot;0.683&quot;/&gt;
                &lt;GradientStop Color=&quot;#33FFFFFF&quot; Offset=&quot;1&quot;/&gt;
            &lt;/LinearGradientBrush&gt;
        &lt;/Setter.Value&gt;
    &lt;/Setter&gt;
    &lt;Setter Property=&quot;BorderBrush&quot;&gt;
        &lt;Setter.Value&gt;
            &lt;LinearGradientBrush EndPoint=&quot;0.5,1&quot; StartPoint=&quot;0.5,0&quot;&gt;
                &lt;GradientStop Color=&quot;#5811322D&quot; Offset=&quot;0&quot;/&gt;
                &lt;GradientStop Color=&quot;#3EFFFFFF&quot; Offset=&quot;0.25&quot;/&gt;
                &lt;GradientStop Color=&quot;#FFFFFFFF&quot; Offset=&quot;0.5&quot;/&gt;
                &lt;GradientStop Color=&quot;#3EFFFFFF&quot; Offset=&quot;0.75&quot;/&gt;
                &lt;GradientStop Color=&quot;#BFFFFFFF&quot; Offset=&quot;1&quot;/&gt;
            &lt;/LinearGradientBrush&gt;
        &lt;/Setter.Value&gt;
    &lt;/Setter&gt;
    &lt;Setter Property=&quot;Effect&quot;&gt;
        &lt;Setter.Value&gt;
            &lt;DropShadowEffect BlurRadius=&quot;3&quot; ShadowDepth=&quot;3&quot; Opacity=&quot;0.5&quot;/&gt;
        &lt;/Setter.Value&gt;
    &lt;/Setter&gt;
&lt;/Style&gt;

&lt;Border x:Name=&quot;GlassBorder&quot; Height=&quot;100&quot; Width=&quot;250&quot; CornerRadius=&quot;10&quot; Style=&quot;{StaticResource GlassBorderStyle}&quot;&gt;
    &lt;Button Content=&quot;Glass Border Style&quot;/&gt;
&lt;/Border&gt;</pre>
<img src="http://silverlike.net/?ak_action=api_record_view&id=867&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://silverlike.net/glass-border-style-button/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Windows System Color Theme</title>
		<link>http://silverlike.net/windows-system-color-theme/</link>
		<comments>http://silverlike.net/windows-system-color-theme/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 13:35:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[Skin]]></category>

		<guid isPermaLink="false">http://silverlike.net/windows-system-color-theme/</guid>
		<description><![CDATA[A theme resources shared by CorrinaB. A very useful style to make your Silverlight Application looks like Windows app.]]></description>
			<content:encoded><![CDATA[<p>A theme resources shared by <a href="http://blogs.msdn.com/corrinab/archive/2009/11/24/9927729.aspx" target="_blank">CorrinaB</a>. A very useful style to make your Silverlight Application looks like Windows app.</p>
<p class="image"><a href="http://blogs.msdn.com/corrinab/archive/2009/11/24/9927729.aspx]" target="_blank"><img style="display: inline" title="Windows System Color Theme" alt="Windows System Color Theme" src="http://silverlike.net/wp-content/uploads/2009/11/WindowsSystemColorTheme.jpg" width="450" height="250" /></a> </p>
<div class="demo-area">Silverlight Demo: <a class="new-window" href="http://silverlike.net/silverlight/index.php?xap=%2Fwp-content%2Fuploads%2Fxap%2FSysColors.xap&TB_iframe=true&caption=Windows+System+Color+Theme&height=400&width=650" target="_blank">Click here to view</a></div>
<div class="reference-info"><strong>Website:</strong> <a href="http://silverlike.net/windows-system-color-theme/" title="http://silverlike.net/windows-system-color-theme/" target="_blank">Click here</a></div>
<div class="reference-info"><strong>Download:</strong> <a href="http://silverlike.net/windows-system-color-theme/" title="http://silverlike.net/windows-system-color-theme/" target="_blank">Click here</a></div>
<img src="http://silverlike.net/?ak_action=api_record_view&id=865&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://silverlike.net/windows-system-color-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Skinnable Custom Control</title>
		<link>http://silverlike.net/creating-skinnable-custom-control/</link>
		<comments>http://silverlike.net/creating-skinnable-custom-control/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 18:02:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[Skin]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://silverlike.net/creating-skinnable-custom-control/</guid>
		<description><![CDATA[A great article created by Boyan Mihailov for beginner who wants to create a highly skinnable custom control in a standard way.]]></description>
			<content:encoded><![CDATA[<p>A great article created by <a href="http://www.silverlightshow.net/items/Creating-a-Skinnable-Custom-Control-in-Silverlight-3-Part-I.aspx" target="_blank">Boyan Mihailov</a> for beginner who wants to create a highly skinnable custom control in a standard way. </p>
<p class="image"><a href="http://www.silverlightshow.net/items/Creating-a-Skinnable-Custom-Control-in-Silverlight-3-Part-I.aspx" target="_blank"><img style="display: inline" title="Creating Skinnable Custom Control" alt="Creating Skinnable Custom Control" src="http://silverlike.net/wp-content/uploads/2009/11/CreatingSkinnableCustomControl.jpg" width="450" height="250" /></a> </p>
<div class="demo-area">Silverlight Demo: <a class="new-window" href="http://silverlike.net/silverlight/index.php?xap=%2Fwp-content%2Fuploads%2Fxap%2FCherryControl.Test.xap&TB_iframe=true&caption=Creating+Skinnable+Custom+Control&height=400&width=650" target="_blank">Click here to view</a></div>
<div class="reference-info"><strong>Website:</strong> <a href="http://silverlike.net/creating-skinnable-custom-control/" title="http://silverlike.net/creating-skinnable-custom-control/" target="_blank">Click here</a></div>
<div class="reference-info"><strong>Download:</strong> <a href="http://silverlike.net/creating-skinnable-custom-control/" title="http://silverlike.net/creating-skinnable-custom-control/" target="_blank">Click here</a></div>
<img src="http://silverlike.net/?ak_action=api_record_view&id=844&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://silverlike.net/creating-skinnable-custom-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SketchFlow Control Explorer</title>
		<link>http://silverlike.net/sketchflow-control-explorer/</link>
		<comments>http://silverlike.net/sketchflow-control-explorer/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 12:33:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[Controls]]></category>
		<category><![CDATA[SketchFlow]]></category>
		<category><![CDATA[Skin]]></category>

		<guid isPermaLink="false">http://silverlike.net/sketchflow-control-explorer/</guid>
		<description><![CDATA[Corey Schuman organized all the theme available for the SketchFlow. A very convenient tool for you to preview all the controls.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.85turns.com/2009/07/22/sketchflow-control-explorer" target="_blank">Corey Schuman</a> organized all the theme available for the SketchFlow. A very convenient tool for you to preview all the controls.</p>
<p class="image"><a class="thickbox" href="http://www.85turns.com/2009/07/22/sketchflow-control-explorer/" target="_blank"><img style="display: inline" title="SketchFlow Control Explorer" alt="SketchFlow Control Explorer" src="http://silverlike.net/wp-content/uploads/2009/09/SketchFlowControlExplorer.jpg" width="400" height="250" /></a></p>
<div class="demo-area">Silverlight Demo: <a class="new-window" href="http://silverlike.net/silverlight/index.php?xap=%2Fwp-content%2Fuploads%2Fxap%2Fsketchflowcontrolexplorer.xap&TB_iframe=true&caption=SketchFlow+Control+Explorer&height=400&width=650" target="_blank">Click here to view</a></div>
<div class="reference-info"><strong>Website:</strong> <a href="http://silverlike.net/sketchflow-control-explorer/" title="http://silverlike.net/sketchflow-control-explorer/" target="_blank">Click here</a></div>
<img src="http://silverlike.net/?ak_action=api_record_view&id=363&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://silverlike.net/sketchflow-control-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!--
This site's performance optimized by W3 Total Cache:

W3 Total Cache improves the user experience of your blog by caching
frequent operations, reducing the weight of various files and providing
transparent content delivery network integration.

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk

Served from: shareelements.silverlighteffect.com @ 2010-07-29 22:57:36 -->