<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">Silverlight in Style</title><subtitle type="html" /><id>http://blogs.msdn.com/mehdis/atom.xml</id><link rel="alternate" type="text/html" href="http://blogs.msdn.com/mehdis/default.aspx" /><link rel="self" type="application/atom+xml" href="http://blogs.msdn.com/mehdis/atom.xml" /><generator uri="http://communityserver.org" version="2.1.61025.2">Community Server</generator><updated>2008-10-29T04:58:00Z</updated><entry><title>Rating Control: Netflix Style</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/mehdis/archive/2009/07/11/rating-control-netflix-style.aspx" /><id>http://blogs.msdn.com/mehdis/archive/2009/07/11/rating-control-netflix-style.aspx</id><published>2009-07-11T04:34:00Z</published><updated>2009-07-11T04:34:00Z</updated><content type="html">&lt;P&gt;In his recent post&amp;nbsp;&lt;A href="http://themechanicalbride.blogspot.com/2009/07/introducing-rating-control.html" mce_href="http://themechanicalbride.blogspot.com/2009/07/introducing-rating-control.html"&gt;blog&lt;/A&gt;, &lt;A href="http://www.blogger.com/profile/15444397760399385108" mce_href="http://www.blogger.com/profile/15444397760399385108"&gt;Jafar&lt;/A&gt; Husain did a nice introduction to the Rating Control which we shipped with the July edition of the Silverlight Toolkit.&amp;nbsp; Jafar and I (the PM) spend quite a bit of time on this control making sure we provide a very powerful control that is both flexible, highly customizable and also easy to use.&amp;nbsp; We had a set of scenarios that were important for us to deliver on. One of them was what we refereed to as the “Netflix” scenario. In this scenario, the initial state of the rating control was displaying an average value (in reality, it is netflix’s best guess on how you would rate this movie). When user selects a value, the average disappears and new user selection is displayed.&lt;/P&gt;
&lt;TABLE border=0 cellSpacing=0 cellPadding=2 width=506&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=214&gt;Normal State: (Average_Value)&lt;/TD&gt;
&lt;TD vAlign=top width=290&gt;Selected State (Value)&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=214&gt;&lt;A href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/RatingControlNetflixStyle_F08B/image_6.png" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/RatingControlNetflixStyle_F08B/image_6.png"&gt;&lt;IMG style="BORDER-RIGHT-WIDTH: 0px; DISPLAY: inline; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px" title=image border=0 alt=image src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/RatingControlNetflixStyle_F08B/image_thumb_2.png" width=106 height=25 mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/RatingControlNetflixStyle_F08B/image_thumb_2.png"&gt;&lt;/A&gt;&lt;/TD&gt;
&lt;TD vAlign=top width=290&gt;&lt;A href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/RatingControlNetflixStyle_F08B/image_2.png" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/RatingControlNetflixStyle_F08B/image_2.png"&gt;&lt;IMG style="BORDER-RIGHT-WIDTH: 0px; DISPLAY: inline; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px" title=image border=0 alt=image src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/RatingControlNetflixStyle_F08B/image_thumb.png" width=100 height=24 mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/RatingControlNetflixStyle_F08B/image_thumb.png"&gt;&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P&gt;If you take a look at the Rating Control API, we have a property called &lt;STRONG&gt;Value&amp;nbsp; &lt;/STRONG&gt;but you will notice that we did not have an additional property for &lt;STRONG&gt;AverageValue&lt;/STRONG&gt;. We debated for a while about the usefulness of such property. On one hand, most rating controls display an average value, so it would be natural to include a property for Average Value. Digging a little bit more, we realized that adding this property will be add a lot of redundancy to the control. The complexity of managing all the Visual States for both the Value and AverageValue would make the designer experience far more complicated than it needs to be when in the end there is a much simpler way to handle such scenario as we will see in this post.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;The trick to accomplishing this scenario is simply super-imposing two rating controls. One would capture the average value and the other one would capture user selection. I chose to use a UserControl to encapsulate this 2 controls: &lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;NetflixRatingControl.xaml:&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE class=code&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;UserControl &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;x&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;:&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;Class&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="RatingSample.NetflixRatingControl"
            &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;xmlns&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
            &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;xmlns&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;:&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;x&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="http://schemas.microsoft.com/winfx/2006/xaml" 
            &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;xmlns&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;:&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;vsm&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="clr-namespace:System.Windows;assembly=System.Windows"
            &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;xmlns&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;:&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;local&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="clr-namespace:RatingSample"
            &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;xmlns&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;:&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;inputToolkit&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Input.Toolkit"
            &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;xmlns&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;:&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;inputToolkitPrimitives&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="clr-namespace:System.Windows.Controls.Primitives;assembly=System.Windows.Controls.Input.Toolkit"&amp;gt;
    &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;Grid&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;
        &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;Grid.Resources&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;
          &lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;....
        &lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;Grid.Resources&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;
        &lt;/SPAN&gt;&lt;SPAN style="COLOR: green"&gt;&amp;lt;!--ReadOnly Rating Control used to display average--&amp;gt;
        &lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;inputToolkit&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;:&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;Rating &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;IsReadOnly&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="True" &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;x&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;:&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;Name&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="netflix_average" 
                             &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;Visibility&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="{&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;Binding &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;Path&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=Value, &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;ElementName&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=netflix, &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;Converter&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;={&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;StaticResource &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;ValueToVisibilityConverter&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;}}"
                             &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;ItemCount&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="5" &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;Value&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="{&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;Binding &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;AvRating&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;}" 
                             &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;ItemContainerStyle&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="{&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;StaticResource &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;RatingItemStyle_Average&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;}"/&amp;gt;
        &lt;/SPAN&gt;&lt;SPAN style="COLOR: green"&gt;&amp;lt;!--Rating Control used to display user selected rating--&amp;gt;
        &lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;inputToolkit&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;:&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;Rating &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;x&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;:&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;Name&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="netflix" &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;ItemContainerStyle&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="{&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;StaticResource &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;RatingItemNetflixStyle&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;}"  
                             &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;ItemCount&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="5" /&amp;gt;    
    &amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;Grid&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;
&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;UserControl&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;A href="http://11011.net/software/vspaste" mce_href="http://11011.net/software/vspaste"&gt;&lt;/A&gt;&lt;A href="http://11011.net/software/vspaste" mce_href="http://11011.net/software/vspaste"&gt;&lt;/A&gt;&lt;A href="http://11011.net/software/vspaste" mce_href="http://11011.net/software/vspaste"&gt;&lt;/A&gt;
&lt;P&gt;&lt;STRONG&gt;NetflixRatingControl.xaml.cs:&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE class=code&gt;&lt;SPAN style="COLOR: blue"&gt;namespace &lt;/SPAN&gt;RatingSample
{
    &lt;SPAN style="COLOR: blue"&gt;public partial class &lt;/SPAN&gt;&lt;SPAN style="COLOR: #2b91af"&gt;NetflixRatingControl &lt;/SPAN&gt;: &lt;SPAN style="COLOR: #2b91af"&gt;UserControl
    &lt;/SPAN&gt;{
        &lt;SPAN style="COLOR: blue"&gt;public &lt;/SPAN&gt;NetflixRatingControl()
        {
            InitializeComponent();
        }
        &lt;SPAN style="COLOR: gray"&gt;/// &amp;lt;summary&amp;gt;
        /// &lt;/SPAN&gt;&lt;SPAN style="COLOR: green"&gt;Represent the average value for all ratings.
        &lt;/SPAN&gt;&lt;SPAN style="COLOR: gray"&gt;/// &amp;lt;/summary&amp;gt;
        &lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;public double&lt;/SPAN&gt;? AverageValue
        {
            &lt;SPAN style="COLOR: blue"&gt;get
            &lt;/SPAN&gt;{
                &lt;SPAN style="COLOR: blue"&gt;return &lt;/SPAN&gt;netflix_average.Value;
            }
            &lt;SPAN style="COLOR: blue"&gt;set
            &lt;/SPAN&gt;{
                netflix_average.Value = &lt;SPAN style="COLOR: blue"&gt;value&lt;/SPAN&gt;;
            }
        }
        &lt;SPAN style="COLOR: gray"&gt;/// &amp;lt;summary&amp;gt;
        /// &lt;/SPAN&gt;&lt;SPAN style="COLOR: green"&gt;Represent the current rating selected by user.
        &lt;/SPAN&gt;&lt;SPAN style="COLOR: gray"&gt;/// &amp;lt;/summary&amp;gt;
        &lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;public double&lt;/SPAN&gt;? Value
        {
            &lt;SPAN style="COLOR: blue"&gt;get
            &lt;/SPAN&gt;{
                &lt;SPAN style="COLOR: blue"&gt;return &lt;/SPAN&gt;netflix.Value;
            }
            &lt;SPAN style="COLOR: blue"&gt;set
            &lt;/SPAN&gt;{
                netflix.Value = &lt;SPAN style="COLOR: blue"&gt;value&lt;/SPAN&gt;;
            }
        }

    }&lt;/PRE&gt;&lt;PRE class=code&gt;&lt;FONT face=Verdana&gt;Pretty straightforward!. You can see a live sample &lt;A href="http://lediggcom00.web701.discountasp.net/Sample.html" mce_href="http://lediggcom00.web701.discountasp.net/Sample.html"&gt;here&lt;/A&gt;&lt;/FONT&gt;&lt;/PRE&gt;&lt;A href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/RatingControlNetflixStyle_F08B/image_4.png" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/RatingControlNetflixStyle_F08B/image_4.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=image border=0 alt=image src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/RatingControlNetflixStyle_F08B/image_thumb_1.png" width=391 height=360 mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/RatingControlNetflixStyle_F08B/image_thumb_1.png"&gt;&lt;/A&gt; &lt;A href="http://11011.net/software/vspaste" mce_href="http://11011.net/software/vspaste"&gt;&lt;/A&gt;
&lt;P&gt;Download Source Code &lt;A href="http://lediggcom00.web701.discountasp.net/Rating/RatingSample.zip" mce_href="http://lediggcom00.web701.discountasp.net/Rating/RatingSample.zip"&gt;here&lt;/A&gt; &lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9829228" width="1" height="1"&gt;</content><author><name>mehdis</name><uri>http://blogs.msdn.com/members/mehdis.aspx</uri></author><category term="Controls" scheme="http://blogs.msdn.com/mehdis/archive/tags/Controls/default.aspx" /><category term="Silverlight" scheme="http://blogs.msdn.com/mehdis/archive/tags/Silverlight/default.aspx" /></entry><entry><title>Creating new ISM-Compatible Themes</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/mehdis/archive/2008/11/18/creating-new-ism-compatible-themes.aspx" /><id>http://blogs.msdn.com/mehdis/archive/2008/11/18/creating-new-ism-compatible-themes.aspx</id><published>2008-11-18T03:01:20Z</published><updated>2008-11-18T03:01:20Z</updated><content type="html">&lt;p&gt;In my last blogs, I went over how to customize the existing Silverlight Toolkit themes. In this post, I will talk about what it takes to create new themes that work with Implicit Style Manager. &lt;/p&gt;  &lt;p&gt;Let's start by creating a Silverlight 2 project in Blend 2 and style few controls:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_4.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_thumb_1.png" width="308" height="175" /&gt;&lt;/a&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;These 3 controls will help us illustrate how to create your theme file from the styles defined in your app.xaml or page.xaml. But before we get there, let's make sure we set up our project to make it easy to develop and test our theme file.&lt;/p&gt;  &lt;p&gt;1. Using Visual Studio 2008, create a new Silverlight 2project:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_14.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_thumb_6.png" width="308" height="133" /&gt;&lt;/a&gt; &lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;2. Edit myTheme.xaml and add the following content:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_16.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_thumb_7.png" width="549" height="105" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;3. We can go to blend now and start creating styles for each control as we usually do (By editing the control template). &lt;/p&gt;  &lt;p&gt;4. Switch to the XAML View and copy all the Styles defined in the UserControl Resource Dictionary to myTheme.xaml&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_20.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; margin: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_thumb_9.png" width="240" height="36" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;5. At this point we are ready to make the necessary changes to myTheme.xaml.&amp;#160; &lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;1. &lt;u&gt;Removing &lt;strong&gt;X:Key&lt;/strong&gt; references from you style definitions.&lt;/u&gt; &lt;/p&gt;    &lt;p&gt;Silverlight uses the full name of the target type as the key in the dictionary. Under the hood, ISM relies on the same mechanism to retrieve a style from the resource dictionary. Therefore the x:Key has to be removed.&lt;/p&gt;    &lt;p&gt;Here is an example of how to convert the Button Style generated by Blend to a ISM version&lt;/p&gt;    &lt;table border="0" cellspacing="0" cellpadding="2" width="400"&gt;&lt;tbody&gt;       &lt;tr&gt;         &lt;td valign="top" width="200"&gt;&lt;font color="#000040"&gt;Style generated by Blend&lt;/font&gt;&lt;/td&gt;          &lt;td valign="top" width="200"&gt;&lt;font color="#000040"&gt;ISM Version&lt;/font&gt;&lt;/td&gt;       &lt;/tr&gt;        &lt;tr&gt;         &lt;td valign="top" width="200"&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_26.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_thumb_12.png" width="309" height="93" /&gt;&lt;/a&gt; &lt;/td&gt;          &lt;td valign="top" width="200"&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_30.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_thumb_14.png" width="279" height="86" /&gt;&lt;/a&gt; &lt;/td&gt;       &lt;/tr&gt;     &lt;/tbody&gt;&lt;/table&gt;    &lt;p&gt;2. &lt;u&gt;Change references to other Styles&lt;/u&gt;&lt;/p&gt;    &lt;p&gt;Often, we have Styles that have reference to other styles such as in the case of ListBox style that has a reference to ScrollViewer. In this case, ISM will expect the Fullname of the type as the key.&lt;/p&gt;    &lt;table border="0" cellspacing="0" cellpadding="2" width="402"&gt;&lt;tbody&gt;       &lt;tr&gt;         &lt;td valign="top" width="374"&gt;&lt;font color="#000040"&gt;Style generated by Blend&lt;/font&gt;&lt;/td&gt;          &lt;td valign="top" width="50"&gt;&lt;font color="#000040"&gt;ISM Version&lt;/font&gt;&lt;/td&gt;       &lt;/tr&gt;        &lt;tr&gt;         &lt;td valign="top" width="374"&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_32.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; margin: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_thumb_15.png" width="354" height="156" /&gt;&lt;/a&gt; &lt;/td&gt;          &lt;td valign="top" width="50"&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_34.png"&gt;&lt;img style="border-right-width: 0px; margin: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_thumb_16.png" width="495" height="173" /&gt;&lt;/a&gt; &lt;/td&gt;       &lt;/tr&gt;     &lt;/tbody&gt;&lt;/table&gt;    &lt;p&gt;3. &lt;u&gt;Add explicit references to other Styles&lt;/u&gt;&lt;/p&gt;    &lt;p&gt;When creating new styles for certain composed controls that exposes style properties such as ItemStyleContainer or CalendarStyle, Blend will automatically hock up those style as follow: &lt;/p&gt;    &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_36.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; margin: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_thumb_17.png" width="584" height="19" /&gt;&lt;/a&gt; &lt;/p&gt;    &lt;p&gt;ISM would not know about the ItemContainerStyle unless you add an explicit reference to it in the parent control's Style (in this case ComboBox Style) &lt;/p&gt;    &lt;table border="0" cellspacing="0" cellpadding="2" width="400"&gt;&lt;tbody&gt;       &lt;tr&gt;         &lt;td valign="top" width="200"&gt;&lt;font color="#000040"&gt;Style generated by Blend&lt;/font&gt;&lt;/td&gt;          &lt;td valign="top" width="200"&gt;&lt;font color="#000040"&gt;ISM Version&lt;/font&gt;&lt;/td&gt;       &lt;/tr&gt;        &lt;tr&gt;         &lt;td valign="top" width="200"&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_40.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_thumb_19.png" width="389" height="114" /&gt;&lt;/a&gt; &lt;/td&gt;          &lt;td valign="top" width="200"&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_42.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; margin: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CreatingnewISMCompatibleThemes_9FEF/image_thumb_20.png" width="463" height="141" /&gt;&lt;/a&gt; &lt;/td&gt;       &lt;/tr&gt;     &lt;/tbody&gt;&lt;/table&gt; &lt;/blockquote&gt;  &lt;blockquote&gt;   &lt;p&gt;DatePicker, DataGrid and ComboBox are other examples of controls that will require adding a reference to other nested styles. You refer to existing the Silverlight Toolkit Themes to see how we modified the styles for these controls.&lt;/p&gt;    &lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;/p&gt;    &lt;p&gt;Creating themes that work with ISM is relatively easy but it can be painful to spot issues with your theme if forget to make the appropriate changes as described above. So a word of advice: Be very careful! :)&amp;#160; I hope this post will inspire you to create your own themes (like this &lt;a href="http://blois.us/blog/2008/11/silverlight-skinning.html"&gt;one&lt;/a&gt; created by Pete Blois). &lt;/p&gt;&lt;/blockquote&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9114013" width="1" height="1"&gt;</content><author><name>mehdis</name><uri>http://blogs.msdn.com/members/mehdis.aspx</uri></author></entry><entry><title>Designer’s Guide to Styling Silverlight Toolkit Charting Controls</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/mehdis/archive/2008/11/11/designer-s-guide-to-styling-silverlight-toolkit-charting-controls.aspx" /><id>http://blogs.msdn.com/mehdis/archive/2008/11/11/designer-s-guide-to-styling-silverlight-toolkit-charting-controls.aspx</id><published>2008-11-11T03:21:41Z</published><updated>2008-11-11T03:21:41Z</updated><content type="html">&lt;p&gt;I wanted to see how far I can take the styling of the Silverlight toolkit charting controls. To answer my question, I turned to Excel and picked one my favorite chart themes:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/DesignersGuidetoStylingSilverlightToolki_E604/image_2.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/DesignersGuidetoStylingSilverlightToolki_E604/image_thumb.png" width="342" height="55" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;The challenge was to see if I can reproduce the same look with the Silverlight toolkit charts. I created the initial charts in Visual Studio but all the styling happened within Expression Blend SP1. I am very pleased by the degree of flexibility the charting preview bits offer. You can change pretty much everything: the chart plot area, the legend, the axis...etc.&amp;#160; The design experience in Blend is still a little bit complex and cumbersome but I know that this something that is being actively addressed for future releases. &lt;/p&gt;  &lt;p&gt;Here is the a screenshot of my Silverlight Application:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/DesignersGuidetoStylingSilverlightToolki_E604/image_6.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/DesignersGuidetoStylingSilverlightToolki_E604/image_thumb_2.png" width="556" height="408" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Creating this look required me to alter pretty much every style that the charts exposed in one way or the other. As I mentioned before, for a first time user, this can be tricky. To make it a little bit easier (at least I hope), I prepared this guide that walks through all the steps in Blend to produce such a style:&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;table border="0" cellspacing="0" cellpadding="2" width="629"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td valign="top" width="142"&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/DesignersGuidetoStylingSilverlightToolki_E604/image_10.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/DesignersGuidetoStylingSilverlightToolki_E604/image_thumb_4.png" width="137" height="120" /&gt;&lt;/a&gt; &lt;/td&gt;        &lt;td valign="top" width="485"&gt;         &lt;h2&gt;Download the guide in PDF format:&lt;/h2&gt;          &lt;h2&gt;&lt;a href="http://slaouist.members.winisp.net/BlogSamples/ChartingStylingGuide.pdf"&gt;Designer&amp;#8217;s Guide to Styling Silverlight Toolkit Charting Controls.&lt;/a&gt;&lt;/h2&gt;       &lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;  &lt;p&gt;You can download the sample project &lt;a href="http://slaouist.members.winisp.net/BlogSamples/SLChart.zip"&gt;here&lt;/a&gt;&lt;/p&gt;  &lt;table border="0" cellspacing="0" cellpadding="2" width="829"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td valign="top" width="75"&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/DesignersGuidetoStylingSilverlightToolki_E604/image_12.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/DesignersGuidetoStylingSilverlightToolki_E604/image_thumb_5.png" width="66" height="52" /&gt;&lt;/a&gt;&lt;/td&gt;        &lt;td valign="top" width="752"&gt;         &lt;br /&gt;          &lt;br /&gt;NOTE: I am still working on the Pie Chart which is a bit more challenging to produce....stay tuned :) ...&lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9058975" width="1" height="1"&gt;</content><author><name>mehdis</name><uri>http://blogs.msdn.com/members/mehdis.aspx</uri></author></entry><entry><title>Customizing Silverlight Toolkit Themes (Part III)</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/mehdis/archive/2008/11/05/customizing-silverlight-toolkit-themes-part-iii.aspx" /><id>http://blogs.msdn.com/mehdis/archive/2008/11/05/customizing-silverlight-toolkit-themes-part-iii.aspx</id><published>2008-11-05T05:22:00Z</published><updated>2008-11-05T05:22:00Z</updated><content type="html">&lt;P&gt;Today, I will explore the ExpressionDark Theme and will go through the process I use to generate many great looking variations of this theme. A killer tool that helps generate colors for themes is &lt;A href="http://jonas.follesoe.no/ct.ashx?id=c279ef94-cb17-4ccf-a4c4-4df8814e3dc6&amp;amp;url=http%3a%2f%2fkuler.adobe.com%2f" mce_href="http://jonas.follesoe.no/ct.ashx?id=c279ef94-cb17-4ccf-a4c4-4df8814e3dc6&amp;amp;url=http%3a%2f%2fkuler.adobe.com%2f"&gt;Kuler&lt;/A&gt;. what's even better is the &lt;STRONG&gt;&lt;A href="http://jonas.follesoe.no/AnnouncingColorfulExpressionStudioAddIn.aspx" mce_href="http://jonas.follesoe.no/AnnouncingColorfulExpressionStudioAddIn.aspx"&gt;Colorful Expression&lt;/A&gt;&lt;/STRONG&gt; Add-in for Expression Design and Blend which in fact retrieves the colors from the Kuler back-end . This tool is great since it allows you to browse within Blend various color variations and generates brushes from those colors for you. &lt;/P&gt;
&lt;P&gt;Here is a snapshot of the add-in as you will see it in Blend:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_4.png" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_4.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" border=0 alt=image src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_thumb_1.png" width=200 height=244 mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_thumb_1.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;The codeplex site for Colorful Expression can be found here:&lt;A title=http://www.codeplex.com/colorful href="http://www.codeplex.com/colorful" mce_href="http://www.codeplex.com/colorful"&gt;http://www.codeplex.com/colorful&lt;/A&gt;. For the purpose of my work, I had to make minor changes to Colorful Expression Tool to generate the Brushes with the exact key that ExpressionDark Theme uses.&lt;/P&gt;
&lt;P&gt;I created a&amp;nbsp;simple silverlight application that helps preview how those colors will end up looking when applied to the Expression Theme.&amp;nbsp; The top part of the screenshot below shows the different brushes defined on top of the ExpressionDark.xaml theme. The lower part shows few controls where the Expression Theme was applied using the colors defined above.&lt;/P&gt;
&lt;P&gt;You can download the &lt;A href="http://slaouist.members.winisp.net/BlogSamples/ThemeDesigner.zip" mce_href="http://slaouist.members.winisp.net/BlogSamples/ThemeDesigner.zip"&gt;ThemeDesigner Application here&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_2.png" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_2.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" border=0 alt=image src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_thumb.png" width=557 height=372 mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_thumb.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;Let's walk through the workflow:&lt;/P&gt;
&lt;P&gt;1) Loading the Solution with Colurful Add-in&lt;/P&gt;
&lt;UL&gt;
&lt;UL&gt;
&lt;LI&gt;Follow the instruction from the codeplex site to get the initial installation done &lt;/LI&gt;
&lt;LI&gt;Copy the modified Colorful.Blend.AddIn.dll and Colorful.Control.dll from the Colurful folder that you will find in the ThemeDesigner.zip) and copy to Program Files\Microsoft Expression\Blend 2 folder&lt;/LI&gt;
&lt;LI&gt;Start the command line and go to the Blend 2 folder: under Program Files\Microsoft Expression\Blend 2 &lt;/LI&gt;
&lt;LI&gt;type &lt;STRONG&gt;Blend.exe -addin:Colorful.Blend.AddIn.dll&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Go to File-&amp;gt;Open-&amp;gt;Project/Solutions and load the ThemeDesigner solution&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;
&lt;P&gt;2) you should see something like this:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_6.png" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_6.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" border=0 alt=image src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_thumb_2.png" width=372 height=275 mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_thumb_2.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;3) Changing the color variations:&lt;/P&gt;
&lt;TABLE border=0 cellSpacing=0 cellPadding=2 width=707&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=261&gt;&lt;A href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_12.png" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_12.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" border=0 alt=image src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_thumb_5.png" width=155 height=244 mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_thumb_5.png"&gt;&lt;/A&gt; &lt;/TD&gt;
&lt;TD vAlign=top width=444&gt;
&lt;P&gt;Delete the the "trees" grid &lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=262&gt;&lt;A href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_16.png" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_16.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" border=0 alt=image src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_thumb_7.png" width=184 height=244 mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_thumb_7.png"&gt;&lt;/A&gt; &lt;/TD&gt;
&lt;TD vAlign=top width=444&gt;Drag on of the Palettes from the colorful dialog to the design surface. &lt;BR&gt;&lt;BR&gt;(Adjust the Margin to 0,0,0,0 and ColumnSpan to 5...etc) &lt;BR&gt;&lt;BR&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=263&gt;&lt;A href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_14.png" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_14.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" border=0 alt=image src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_thumb_6.png" width=244 height=164 mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_thumb_6.png"&gt;&lt;/A&gt; &lt;/TD&gt;
&lt;TD vAlign=top width=444&gt;You will get the message. Select the second option to overwrite existing resource &lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=263&gt;&lt;A href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_18.png" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_18.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" border=0 alt=image src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_thumb_8.png" width=244 height=127 mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_thumb_8.png"&gt;&lt;/A&gt; &lt;/TD&gt;
&lt;TD vAlign=top width=444&gt;You should see the colors reflected in the controls.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P&gt;if you run the app, you will see the color scheme reflected in the controls:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_20.png" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_20.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" border=0 alt=image src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_thumb_9.png" width=493 height=328 mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_thumb_9.png"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;4) Using the generated brushes to produce a new Expression variation&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;if you like the colors, the next step would be to go back to Blend under the XAML view&lt;/LI&gt;
&lt;LI&gt;Select and Copy the following Brushes:&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_22.png" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_22.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-TOP: 0px; BORDER-RIGHT: 0px" border=0 alt=image src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_thumb_10.png" width=576 height=240 mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesPartI_F715/image_thumb_10.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Locate the ExpressionDark.xaml file from the toolkit sample folder, add to your project (or to the sample project from the last 2 blogs). Copy the brushes above over the existing one.&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Conclusion:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;My goal with this application was to have a better design experience when tweaking the colors of the expression theme. I hope this will help you as well. &lt;/P&gt;
&lt;P&gt;Download ThemeDesigner &lt;A href="http://slaouist.members.winisp.net/BlogSamples/ThemeDesigner.zip" mce_href="http://slaouist.members.winisp.net/BlogSamples/ThemeDesigner.zip"&gt;here&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9042679" width="1" height="1"&gt;</content><author><name>mehdis</name><uri>http://blogs.msdn.com/members/mehdis.aspx</uri></author></entry><entry><title>Customizing Silverlight Toolkit Themes (Part II)</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/mehdis/archive/2008/11/03/customizing-silverlight-toolkit-themes-part-ii.aspx" /><id>http://blogs.msdn.com/mehdis/archive/2008/11/03/customizing-silverlight-toolkit-themes-part-ii.aspx</id><published>2008-11-03T06:50:13Z</published><updated>2008-11-03T06:50:13Z</updated><content type="html">&lt;p&gt;In this blog I will be discussing the customization of the Rainier Theme. We will use the sample from the last blog and will first add the RainierOrange.xaml file from the &lt;a href="http://codeplex.com/silverlight"&gt;Source\Controls.Samples\Theming\ThemeBrowser&lt;/a&gt; folder to our project and rename it RainierRadialBlue.xaml (don’t forget to set the build action to content). Ready?&amp;#160; Let’s start changing the color scheme of the controls in their different states&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;     &lt;h3 align="left"&gt;Modifying the Normal Brush:&lt;/h3&gt;   &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;if you look into the RainierRadialBlue.xaml, you will notice the following brush:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesconti_12C7F/image_2.png"&gt;&lt;img title="image" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="67" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesconti_12C7F/image_thumb.png" width="541" border="0" /&gt;&lt;/a&gt;&amp;#160; &lt;/p&gt;  &lt;p&gt;by changing this brush, you will affect the color of all the controls when they are in their normal state. &lt;/p&gt;  &lt;p&gt;Say for example, I want to change normal state as follow:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesconti_12C7F/image_4.png"&gt;&lt;img title="image" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="27" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesconti_12C7F/image_thumb_1.png" width="219" border="0" /&gt;&lt;/a&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;I will simply define a new RadialGradientBrush (I usually use Blend to do this):&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesconti_12C7F/image_6.png"&gt;&lt;img title="image" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="101" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesconti_12C7F/image_thumb_2.png" width="553" border="0" /&gt;&lt;/a&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt; &lt;strong&gt;   &lt;ul&gt;     &lt;li&gt;       &lt;h3&gt;Modifying the MouseOver Brush:&lt;/h3&gt;     &lt;/li&gt;   &lt;/ul&gt; &lt;/strong&gt;  &lt;p&gt;Changing the mouse over state requires modifying the MouseOverBrush as follow:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesconti_12C7F/image_8.png"&gt;&lt;img title="image" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="111" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesconti_12C7F/image_thumb_3.png" width="556" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;strong&gt;Modifying the Selected Background brush:&lt;/strong&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Changing the selected state requires modifying the selected background brush as follow:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesconti_12C7F/image_14.png"&gt;&lt;img title="image" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="102" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesconti_12C7F/image_thumb_6.png" width="557" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;strong&gt;Modifying Highlight &amp;amp; Border Brush&lt;/strong&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;The border brush defines the border of the controls when they are in the normal state:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesconti_12C7F/image_16.png"&gt;&lt;img title="image" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="50" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesconti_12C7F/image_thumb_7.png" width="567" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;The Highlight Brush defines the border color of the controls when they are in a focused state:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesconti_12C7F/image_18.png"&gt;&lt;img title="image" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="48" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesconti_12C7F/image_thumb_8.png" width="574" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Conclusion:&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Rainier theme was inspired from the default theme of the Silverlight controls. We wanted to allow a greater flexibility when changing the background color of the controls. As you can see, It took only few changes of a set of predefined brushes to change the look and feel of all the controls. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesconti_12C7F/image_22.png"&gt;&lt;img title="image" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="198" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemesconti_12C7F/image_thumb_10.png" width="223" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;You can download the sample project &lt;a href="http://slaouist.members.winisp.net/BlogSamples/SampleTheme11_2.zip"&gt;here&lt;/a&gt; &amp;amp; RainierRadialBlue.xaml &lt;a href="http://slaouist.members.winisp.net/BlogSamples/RainierRadialBlue.xaml"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9030824" width="1" height="1"&gt;</content><author><name>mehdis</name><uri>http://blogs.msdn.com/members/mehdis.aspx</uri></author></entry><entry><title>Customizing Silverlight Toolkit Themes (PART I)</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/mehdis/archive/2008/11/02/customizing-silverlight-toolkit-themes.aspx" /><id>http://blogs.msdn.com/mehdis/archive/2008/11/02/customizing-silverlight-toolkit-themes.aspx</id><published>2008-11-02T06:24:00Z</published><updated>2008-11-02T06:24:00Z</updated><content type="html">&lt;p&gt;We shipped the Silverlight Toolkit with the following Themes:&lt;/p&gt;  &lt;table class="" cellspacing="0" cellpadding="0" border="0"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td class="" valign="top" width="125"&gt;         &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image002_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image002_2.jpg"&gt;&lt;img title="clip_image002" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="110" alt="clip_image002" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image002_thumb.jpg" width="110" border="0" mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image002_thumb.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;       &lt;/td&gt;        &lt;td class="" valign="top" width="131"&gt;         &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image004_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image004_2.jpg"&gt;&lt;img title="clip_image004" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="108" alt="clip_image004" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image004_thumb.jpg" width="108" border="0" mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image004_thumb.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;       &lt;/td&gt;        &lt;td class="" valign="top" width="117"&gt;         &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image006_2.gif" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image006_2.gif"&gt;&lt;img title="clip_image006" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="110" alt="clip_image006" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image006_thumb.gif" width="110" border="0" mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image006_thumb.gif" /&gt;&lt;/a&gt;&lt;/p&gt;       &lt;/td&gt;        &lt;td class="" valign="top" width="123"&gt;         &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image008_2.gif" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image008_2.gif"&gt;&lt;img title="clip_image008" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="108" alt="clip_image008" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image008_thumb.gif" width="108" border="0" mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image008_thumb.gif" /&gt;&lt;/a&gt;&lt;/p&gt;       &lt;/td&gt;        &lt;td class="" valign="top" width="129"&gt;         &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image010_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image010_2.jpg"&gt;&lt;img title="clip_image010" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="108" alt="clip_image010" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image010_thumb.jpg" width="108" border="0" mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image010_thumb.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;       &lt;/td&gt;        &lt;td class="" valign="top" width="16"&gt;         &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image012_2.jpg" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image012_2.jpg"&gt;&lt;img title="clip_image012" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="108" alt="clip_image012" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image012_thumb.jpg" width="108" border="0" mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/clip_image012_thumb.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td class="" valign="top" width="125"&gt;Expression Dark&lt;/td&gt;        &lt;td class="" valign="top" width="131"&gt;Expression Light&lt;/td&gt;        &lt;td class="" valign="top" width="117"&gt;Shiny Red&lt;/td&gt;        &lt;td class="" valign="top" width="123"&gt;Shiny Blue&lt;/td&gt;        &lt;td class="" valign="top" width="129"&gt;Rainier Orange&lt;/td&gt;        &lt;td class="" valign="top" width="16"&gt;Rainier Purple&lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;  &lt;p&gt;In this post, I will be talking about how to customize these themes&amp;#160; and produce many great looking variations. &lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;Customizing Shiny Blue Theme:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;First thing first, if you haven’t already done so, download the Silverlight Toolkit &lt;a href="http://www.codeplex.com/Silverlight/Release/ProjectReleases.aspx" mce_href="http://www.codeplex.com/Silverlight/Release/ProjectReleases.aspx"&gt;here&lt;/a&gt;. Under the Source\Controls.Samples\Theming\ThemeBrowser you will find all themes files as well as the source code for theme browser sample. This blog assumes that you are familiar with Implicit Style Manger. Please refer to &lt;a href="http://www.beacosta.com/blog/" mce_href="http://www.beacosta.com/blog/"&gt;Beatriz’s&lt;/a&gt; or &lt;a href="http://silverlight.net/blogs/jesseliberty/archive/2008/10/31/themes-revisited-the-implicit-style-manager.aspx" mce_href="http://silverlight.net/blogs/jesseliberty/archive/2008/10/31/themes-revisited-the-implicit-style-manager.aspx"&gt;Jesse Liberty&lt;/a&gt; blogs. (for a deep dive go to &lt;a href="http://themechanicalbride.blogspot.com/2008/10/implicitstylemanager-under-hood.html"&gt;Jafar&lt;/a&gt;'s blog, the developer of ISM)&lt;/p&gt;  &lt;p&gt;For now, we will be working with &lt;strong&gt;ShinyBlue.xaml. &lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Step 1:&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Create a new Silverlight Project in Silverlight Project&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Step 2:&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Add a reference to Microsoft.Windows.Controls.Theming.dll and System.Windows.Controls.dll&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Step 3:&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Add ShinyBlue.xaml to your project, rename to &lt;strong&gt;ShinyDarkTeal.xaml&lt;/strong&gt; and set the build action to Content.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/image_4.png" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/image_4.png"&gt;&lt;img title="image" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="175" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/image_thumb_1.png" width="226" border="0" mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/image_thumb_1.png" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Step 4:&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Add the following lines to your page.xaml file:&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/image_2.png" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/image_2.png"&gt;&lt;img title="image" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="174" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/image_thumb.png" width="579" border="0" mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/image_thumb.png" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Step 5:&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Open ShinyDarkTeal and search for the following lines (towards the beginning of the file):&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; mso-layout-grid-align: none"&gt;&lt;font size="1"&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Color&lt;/span&gt;&lt;span style="font-size: 10pt; color: red; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt; x&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;:&lt;/span&gt;&lt;span style="font-size: 10pt; color: red; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Key&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;=&amp;quot;NormalBrushGradient1&amp;quot;&amp;gt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;#FFBAE4FF&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Color&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; mso-layout-grid-align: none"&gt;&lt;font size="1"&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&lt;/span&gt;&lt;/font&gt;&lt;font size="1"&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Color&lt;/span&gt;&lt;span style="font-size: 10pt; color: red; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt; x&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;:&lt;/span&gt;&lt;span style="font-size: 10pt; color: red; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Key&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;=&amp;quot;NormalBrushGradient2&amp;quot;&amp;gt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;#FF398FDF&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Color&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;gt; &lt;/span&gt;      &lt;p mce_keep="true"&gt;&lt;/p&gt;   &lt;/font&gt;&lt;font size="1"&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Color&lt;/span&gt;&lt;span style="font-size: 10pt; color: red; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt; x&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;:&lt;/span&gt;&lt;span style="font-size: 10pt; color: red; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Key&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;=&amp;quot;NormalBrushGradient3&amp;quot;&amp;gt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;#FF006DD4&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Color&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;gt; &lt;/span&gt;      &lt;p mce_keep="true"&gt;&lt;/p&gt;   &lt;/font&gt;&lt;font size="1"&gt;&lt;span style="font-size: 10pt; color: #a31515; line-height: 115%; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;#160;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; line-height: 115%; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; line-height: 115%; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Color&lt;/span&gt;&lt;span style="font-size: 10pt; color: red; line-height: 115%; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt; x&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; line-height: 115%; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;:&lt;/span&gt;&lt;span style="font-size: 10pt; color: red; line-height: 115%; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Key&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; line-height: 115%; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;=&amp;quot;NormalBrushGradient4&amp;quot;&amp;gt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; line-height: 115%; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;#FF0A3E69&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; line-height: 115%; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; line-height: 115%; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Color&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; line-height: 115%; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; mso-layout-grid-align: none"&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; mso-layout-grid-align: none"&gt;Replace by the following:&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; mso-layout-grid-align: none"&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; mso-layout-grid-align: none"&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Color&lt;/span&gt;&lt;span style="font-size: 10pt; color: red; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt; x&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;:&lt;/span&gt;&lt;span style="font-size: 10pt; color: red; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Key&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;=&amp;quot;NormalBrushGradient1&amp;quot;&amp;gt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;#FFC5E1D7&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Color&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;gt; &lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Color &lt;/span&gt;&lt;span style="font-size: 10pt; color: red; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;x&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;:&lt;/span&gt;&lt;span style="font-size: 10pt; color: red; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Key&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;=&amp;quot;NormalBrushGradient2&amp;quot;&amp;gt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;#FF7CB2A2&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Color&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;gt; &lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Color&lt;/span&gt;&lt;span style="font-size: 10pt; color: red; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt; x&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;:&lt;/span&gt;&lt;span style="font-size: 10pt; color: red; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Key&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;=&amp;quot;NormalBrushGradient3&amp;quot;&amp;gt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;#FF3F8570&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;Color&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes"&gt;&amp;gt; &lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes; mso-fareast-font-family: calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: en-us; mso-fareast-language: en-us; mso-bidi-language: ar-sa"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes; mso-fareast-font-family: calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: en-us; mso-fareast-language: en-us; mso-bidi-language: ar-sa"&gt;Color&lt;/span&gt;&lt;span style="font-size: 10pt; color: red; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes; mso-fareast-font-family: calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: en-us; mso-fareast-language: en-us; mso-bidi-language: ar-sa"&gt; x&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes; mso-fareast-font-family: calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: en-us; mso-fareast-language: en-us; mso-bidi-language: ar-sa"&gt;:&lt;/span&gt;&lt;span style="font-size: 10pt; color: red; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes; mso-fareast-font-family: calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: en-us; mso-fareast-language: en-us; mso-bidi-language: ar-sa"&gt;Key&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes; mso-fareast-font-family: calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: en-us; mso-fareast-language: en-us; mso-bidi-language: ar-sa"&gt;=&amp;quot;NormalBrushGradient4&amp;quot;&amp;gt;&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes; mso-fareast-font-family: calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: en-us; mso-fareast-language: en-us; mso-bidi-language: ar-sa"&gt;#FF294C41&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes; mso-fareast-font-family: calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: en-us; mso-fareast-language: en-us; mso-bidi-language: ar-sa"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 10pt; color: #a31515; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes; mso-fareast-font-family: calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: en-us; mso-fareast-language: en-us; mso-bidi-language: ar-sa"&gt;Color&lt;/span&gt;&lt;span style="font-size: 10pt; color: blue; font-family: &amp;#39;Courier New&amp;#39;; mso-no-proof: yes; mso-fareast-font-family: calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: en-us; mso-fareast-language: en-us; mso-bidi-language: ar-sa"&gt;&amp;gt;&lt;/span&gt; &lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Step 6:&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Compile and run the sample. You should see the following:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/image_6.png" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/image_6.png"&gt;&lt;img title="image" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="199" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/image_thumb_2.png" width="105" border="0" mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/image_thumb_2.png" /&gt;&lt;/a&gt;&amp;#160; &lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;As you can see, changing the color of the theme is simple. In the next blog, I will dive deeper into theme customization. In the meanwhile, you can &lt;a href="http://slaouist.members.winisp.net/BlogSamples/SampleTheme.zip" mce_href="http://slaouist.members.winisp.net/BlogSamples/SampleTheme.zip"&gt;Download the sample here&lt;/a&gt;. I added more variations of the Shiny theme for you enjoyment:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/image_8.png" mce_href="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/image_8.png"&gt;&lt;img title="image" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="174" alt="image" src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/image_thumb_3.png" width="264" border="0" mce_src="http://blogs.msdn.com/blogfiles/mehdis/WindowsLiveWriter/CustomizingSilverlightToolkitThemes_10766/image_thumb_3.png" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;You can download the individual themes here:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://slaouist.members.winisp.net/BlogSamples/ShinyDarkTeal.xaml" mce_href="http://slaouist.members.winisp.net/BlogSamples/ShinyDarkTeal.xaml"&gt;ShinyDarkTeal.xaml&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://slaouist.members.winisp.net/BlogSamples/ShinyDarkGreen.xaml" mce_href="http://slaouist.members.winisp.net/BlogSamples/ShinyDarkGreen.xaml"&gt;ShinyDarkGreen.xaml&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://slaouist.members.winisp.net/BlogSamples/ShinyDarkPurple.xaml" mce_href="http://slaouist.members.winisp.net/BlogSamples/ShinyDarkPurple.xaml"&gt;ShinyDarkPurple.xaml&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9028830" width="1" height="1"&gt;</content><author><name>mehdis</name><uri>http://blogs.msdn.com/members/mehdis.aspx</uri></author></entry><entry><title>Silverlight Toolkit is here! [updated]</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/mehdis/archive/2008/10/29/silverlight-toolkit-is-here.aspx" /><id>http://blogs.msdn.com/mehdis/archive/2008/10/29/silverlight-toolkit-is-here.aspx</id><published>2008-10-29T06:58:00Z</published><updated>2008-10-29T06:58:00Z</updated><content type="html">&lt;P&gt;By now you must have already heard of the Silverlight Toolkit my team shipped today. If not, you can read all about it &lt;A href="http://blogs.msdn.com/sburke/archive/2008/10/28/silverlight-toolkit-now-available-for-download.aspx" mce_href="http://blogs.msdn.com/sburke/archive/2008/10/28/silverlight-toolkit-now-available-for-download.aspx"&gt;here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Over the next few blogs, I will be covering a range of topics all intended to help Designers and Developers create graphically compelling applications with Silverlight. Here is a summary of upcoming blogs:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Silverlight Toolkit Themes Customization &lt;/LI&gt;
&lt;LI&gt;Creating new themes &lt;/LI&gt;
&lt;LI&gt;Preview of upcoming Silverlight Toolkit themes &lt;/LI&gt;
&lt;LI&gt;Creating Styles for the Silverlight Charting Controls.&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;Stay tuned! &lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9021576" width="1" height="1"&gt;</content><author><name>mehdis</name><uri>http://blogs.msdn.com/members/mehdis.aspx</uri></author></entry></feed>