<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>      ux musings : Silverlight</title><link>http://blogs.msdn.com/corrinab/archive/tags/Silverlight/default.aspx</link><description>Tags: Silverlight</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Silverlight 4 Notification Window Class</title><link>http://blogs.msdn.com/corrinab/archive/2009/12/08/9933937.aspx</link><pubDate>Tue, 08 Dec 2009 08:27:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9933937</guid><dc:creator>CorrinaB</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/corrinab/comments/9933937.aspx</comments><wfw:commentRss>http://blogs.msdn.com/corrinab/commentrss.aspx?PostID=9933937</wfw:commentRss><description>&lt;P&gt;&lt;A href="http://timheuer.com/blog/archive/2009/11/22/silverlight-4-notification-window-queue-sample.aspx" mce_href="http://timheuer.com/blog/archive/2009/11/22/silverlight-4-notification-window-queue-sample.aspx"&gt;Tim Heuer&lt;/A&gt; has a great blog post on the new NotificationWindow class for Silverlight 4 Out-Of-Browser applications. This class allows you to create notifications or 'Toast' for your Out-Of-Browser applications when you need to provided helpful information to the user as they are interacting with the application. &lt;/P&gt;
&lt;P&gt;Tim provides great visuals for the notification window&amp;nbsp;in his sample application, and I decided to leverage his sample to explore things myself and created a style that maps nicely with the default Silverlight control styles. My sample project can be found &lt;A href="http://cid-41ea2b2f3f18c5d6.skydrive.live.com/embedicon.aspx/Public/Notifications/Notification%5E_VisualSample.zip" mce_href="http://cid-41ea2b2f3f18c5d6.skydrive.live.com/embedicon.aspx/Public/Notifications/Notification^_VisualSample.zip"&gt;here&lt;/A&gt; and the visuals can be seen below...&lt;/P&gt;
&lt;P&gt;&lt;IMG style="WIDTH: 640px; HEIGHT: 445px" src="http://yzamjw.blu.livefilestore.com/y1pS_FFjXEwDRSKju64h8n13W6n33_3hJZolkBn0H2-tzt4R9Jtz1CXF3K6MUy5Gu48wv-K4VI_zQgIMLkFTWW6hiJla0vwtq-J/Notification.png" width=640 height=445 mce_src="http://yzamjw.blu.livefilestore.com/y1pS_FFjXEwDRSKju64h8n13W6n33_3hJZolkBn0H2-tzt4R9Jtz1CXF3K6MUy5Gu48wv-K4VI_zQgIMLkFTWW6hiJla0vwtq-J/Notification.png"&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9933937" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/corrinab/archive/tags/Control+Styles/default.aspx">Control Styles</category><category domain="http://blogs.msdn.com/corrinab/archive/tags/Silverlight/default.aspx">Silverlight</category><category domain="http://blogs.msdn.com/corrinab/archive/tags/Controls/default.aspx">Controls</category></item><item><title>Windows System Color Theme for Silverlight - Part Two</title><link>http://blogs.msdn.com/corrinab/archive/2009/12/02/9931283.aspx</link><pubDate>Wed, 02 Dec 2009 06:34:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9931283</guid><dc:creator>CorrinaB</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/corrinab/comments/9931283.aspx</comments><wfw:commentRss>http://blogs.msdn.com/corrinab/commentrss.aspx?PostID=9931283</wfw:commentRss><description>&lt;P&gt;The SDK controls are now themed in the Windows system color theme style, and the Toolkit controls will be themed very soon!&amp;nbsp;The updated project is available for &lt;A href="http://cid-41ea2b2f3f18c5d6.skydrive.live.com/embedicon.aspx/Public/Accessibility/SDK%5E_SwapThemeDynamically/SystemColors.zip" mce_href="http://cid-41ea2b2f3f18c5d6.skydrive.live.com/embedicon.aspx/Public/Accessibility/SDK^_SwapThemeDynamically/SystemColors.zip"&gt;download&amp;nbsp;here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;For those of you who desire a bit more contrast in the theme, particularly for high contrast color modes,&amp;nbsp;there are a few approaches you can take...&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;One quick and simple approach&amp;nbsp;is&amp;nbsp;to open SysColors.cs and replace the appropriate gradient brushes with&amp;nbsp;solid color brushes by&amp;nbsp;changing &lt;FONT color=#2b91af size=2&gt;&lt;FONT color=#2b91af size=2&gt;LinearGradientBrush&lt;/FONT&gt;&lt;/FONT&gt; properties to &lt;FONT color=#2b91af size=2&gt;&lt;FONT color=#2b91af size=2&gt;Brush &lt;/FONT&gt;&lt;/FONT&gt;properties, and, in most cases, I would recommend using ControlColor for the replacement. This will eliminate the gradients used on buttons and increase contrast a bit&lt;/LI&gt;
&lt;LI&gt;You could take it even further and replace the use of ControlDarkDarkBrush for fonts with ControlTextBrush or WindowTextBrush, depending on where the font sits (e.g. if it sits on a background filled with ControlBrush it should use&amp;nbsp;ControlTextBrush and if it sits on a background filled with WindowBrush it should use WindowTextBrush). You may also consider changing control borders from ControlDarkBrush to ControlDarkDarkBrush. These changes will increase the contrast even more&lt;/LI&gt;
&lt;LI&gt;Another approach is to create a second rescouce dictionary for use only when in high contrast color modes that has the desired contrast level. I have created a &lt;A href="http://cid-41ea2b2f3f18c5d6.skydrive.live.com/embedicon.aspx/Public/Accessibility/SDK%5E_SwapThemeDynamically/PDC%5E_09.zip" mce_href="http://cid-41ea2b2f3f18c5d6.skydrive.live.com/embedicon.aspx/Public/Accessibility/SDK^_SwapThemeDynamically/PDC^_09.zip"&gt;second project&lt;/A&gt; that shows how this can be done. This project shows mockup Ux for an LOB demo that was used at PDC 09', and it isn't fully functional, so please focus on the theme swapping functionality which can be found in MainPage.xaml.cs and LoadResource.cs. Creating a second theme is a lot more work, but it may be the best approach for many projects&lt;/LI&gt;&lt;/UL&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Screen Shots&lt;/H3&gt;
&lt;P&gt;What follows are screen shots of the PDC Ux in default and high contrast white modes and the newly&amp;nbsp;themed SDK controls&amp;nbsp;in various Windows default and high contrast modes...&lt;/P&gt;
&lt;P&gt;&lt;IMG style="WIDTH: 640px; HEIGHT: 344px" src="http://public.blu.livefilestore.com/y1pc32Wrh5cT6_wwwts8wAD9TksYPEskTmjLU5Eaavlfpeb8zLVvWeLF__86BZVsVRIEA3VoqM1Wjfm9PfI6-M9iA/PDC_09_DefaultUx.png" width=640 height=344 mce_src="http://public.blu.livefilestore.com/y1pc32Wrh5cT6_wwwts8wAD9TksYPEskTmjLU5Eaavlfpeb8zLVvWeLF__86BZVsVRIEA3VoqM1Wjfm9PfI6-M9iA/PDC_09_DefaultUx.png"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG style="WIDTH: 640px; HEIGHT: 344px" src="http://public.blu.livefilestore.com/y1pYDOrllupJvpinJen59n0Hz4PjB9MvqiL8Uj3c2tPxizIB3UXBPqvtvoC7FHVu-OwtSymGh5D6u4ChnHVdFSbxw/PDC_09_HighContrastUx.png" width=640 height=344 mce_src="http://public.blu.livefilestore.com/y1pYDOrllupJvpinJen59n0Hz4PjB9MvqiL8Uj3c2tPxizIB3UXBPqvtvoC7FHVu-OwtSymGh5D6u4ChnHVdFSbxw/PDC_09_HighContrastUx.png"&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG style="WIDTH: 638px; HEIGHT: 529px" src="http://public.blu.livefilestore.com/y1pzVdd7eQIoXuzT3emNJkE150BTMrGNl0JkEe5akmEeFBkOCa3F69Nznlj7uOa3nEeo_S4LHznR1VqXKNH9NkIZw/SDK_1.png" width=638 height=529 mce_src="http://public.blu.livefilestore.com/y1pzVdd7eQIoXuzT3emNJkE150BTMrGNl0JkEe5akmEeFBkOCa3F69Nznlj7uOa3nEeo_S4LHznR1VqXKNH9NkIZw/SDK_1.png"&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG style="WIDTH: 638px; HEIGHT: 529px" src="http://public.blu.livefilestore.com/y1pMoromOzP_ZCPxj133vLSdodN026-_hYPejBErZAjemMKb9f0ZdP0pZyGR060xUivIRgeOIRThlgq7t4b_naO1g/SDK_3.png" width=638 height=529 mce_src="http://public.blu.livefilestore.com/y1pMoromOzP_ZCPxj133vLSdodN026-_hYPejBErZAjemMKb9f0ZdP0pZyGR060xUivIRgeOIRThlgq7t4b_naO1g/SDK_3.png"&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG style="WIDTH: 638px; HEIGHT: 529px" src="http://public.blu.livefilestore.com/y1pSAK_E1BnhgpRam27NUdVBPXzx6VnSmUxGTeQNY2DxwR9WfFjSxuDy18PvuqUk7mdJKzFoX_3BsCGRhEsu02ebQ/SDK_2.png" width=638 height=529 mce_src="http://public.blu.livefilestore.com/y1pSAK_E1BnhgpRam27NUdVBPXzx6VnSmUxGTeQNY2DxwR9WfFjSxuDy18PvuqUk7mdJKzFoX_3BsCGRhEsu02ebQ/SDK_2.png"&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG style="WIDTH: 638px; HEIGHT: 529px" src="http://public.blu.livefilestore.com/y1pRFJFWKKJ08oo92O9gPkxjtlojNDbW7htPRWs-ojtKOxHO-r5mu3dFoPYWJfAvK4JqOlhj19d-_g3pd_tK32oSA/SDK_4.png" width=638 height=529 mce_src="http://public.blu.livefilestore.com/y1pRFJFWKKJ08oo92O9gPkxjtlojNDbW7htPRWs-ojtKOxHO-r5mu3dFoPYWJfAvK4JqOlhj19d-_g3pd_tK32oSA/SDK_4.png"&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9931283" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/corrinab/archive/tags/Control+Styles/default.aspx">Control Styles</category><category domain="http://blogs.msdn.com/corrinab/archive/tags/Silverlight/default.aspx">Silverlight</category><category domain="http://blogs.msdn.com/corrinab/archive/tags/Controls/default.aspx">Controls</category><category domain="http://blogs.msdn.com/corrinab/archive/tags/Control+Skins/default.aspx">Control Skins</category></item><item><title>Windows System Color Theme for Silverlight</title><link>http://blogs.msdn.com/corrinab/archive/2009/11/24/9927729.aspx</link><pubDate>Tue, 24 Nov 2009 05:53:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9927729</guid><dc:creator>CorrinaB</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/corrinab/comments/9927729.aspx</comments><wfw:commentRss>http://blogs.msdn.com/corrinab/commentrss.aspx?PostID=9927729</wfw:commentRss><description>&lt;P&gt;Accessibility is important to consider when designing applications. Not only do those with visual, physical, speech, cognitive, and neurological disabilities benefit from software that is accessible, but those without these disabilities benefit as well. Silverlight makes it possible to create applications that address accessibility needs, and some colleagues of mine and I decided to explore some of the possibilities by creating a control and navigation template theme&amp;nbsp;that maps to Windows system colors (this will allow the application to seamlessly respond to Windows&amp;nbsp;high contrast mode color changes).&lt;/P&gt;
&lt;P&gt;At this time, we have the Navigation template and the core controls themed. We plan to continue our explorations and theme the SDK and Toolkit controls as well. Please tell us what you think of our work to date…&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;What do you think of the visual appearance of the theme? &lt;/LI&gt;
&lt;LI&gt;Will you be able to apply it to your Silverlight applications without extensive redesign, and if not why not? &lt;/LI&gt;
&lt;LI&gt;Does the theme meet the needs of your core scenarios, and if not why not? &lt;/LI&gt;
&lt;LI&gt;What is missing? &lt;/LI&gt;&lt;/UL&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Utilizing the Theme&lt;/H3&gt;
&lt;P&gt;In order to use the theme, you will need to include the styles, “CoreControlStyles.xaml” and “Styles.xaml”, and two code files in your &lt;A href="http://cid-41ea2b2f3f18c5d6.skydrive.live.com/embedicon.aspx/Public/Accessibility/SystemColors.zip" mce_href="http://cid-41ea2b2f3f18c5d6.skydrive.live.com/embedicon.aspx/Public/Accessibility/SystemColors.zip"&gt;project&lt;/A&gt;. The first code file,” SysColors.cs”, maps the system colors to brushes, and the second code file, “SetterValueBindingHelper.cs” courtesy of &lt;A href="http://blogs.msdn.com/delay/archive/2009/11/02/as-the-platform-evolves-so-do-the-workarounds-better-settervaluebindinghelper-makes-silverlight-setters-better-er.aspx" mce_href="http://blogs.msdn.com/delay/archive/2009/11/02/as-the-platform-evolves-so-do-the-workarounds-better-settervaluebindinghelper-makes-silverlight-setters-better-er.aspx"&gt;Delay's Blog&lt;/A&gt;, enables data binding of the&amp;nbsp;system color brushes in property setters (we utilized this in a few places).&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Screen Shots&lt;/H3&gt;
&lt;P&gt;What follows are screen shots of the theme in the various Windows default and high contrast modes...&lt;/P&gt;
&lt;P&gt;&lt;IMG style="WIDTH: 640px; HEIGHT: 532px" src="http://public.blu.livefilestore.com/y1punftAPYgHoG3RCxqAeSw8B-kkkrjwmn5ZCTEcoeNE16LsA5pZLLCcw18jqmSeqzNFIm14cHxBtXcnIoVLUYiLg/Access_1.jpg" width=640 height=532 mce_src="http://public.blu.livefilestore.com/y1punftAPYgHoG3RCxqAeSw8B-kkkrjwmn5ZCTEcoeNE16LsA5pZLLCcw18jqmSeqzNFIm14cHxBtXcnIoVLUYiLg/Access_1.jpg"&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG style="WIDTH: 640px; HEIGHT: 532px" src="http://public.blu.livefilestore.com/y1pV9w8sRD7fntVuTOH2gl1SITf2uFIkBgzrd8zJ6B8PdOqh0Jp17qx0bVx2poj8AzB5atoz5r4QEZFcDo16sjRMg/Access_5.jpg" width=640 height=532 mce_src="http://public.blu.livefilestore.com/y1pV9w8sRD7fntVuTOH2gl1SITf2uFIkBgzrd8zJ6B8PdOqh0Jp17qx0bVx2poj8AzB5atoz5r4QEZFcDo16sjRMg/Access_5.jpg"&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG style="WIDTH: 640px; HEIGHT: 532px" src="http://public.blu.livefilestore.com/y1pq_Kz26sfwmL2JbiFG8bQ3vjvA_j3wuTgErdB3Fe27C8FCNtTRpYj3kobnuIvyb4FMmgCfBQ74UIspmNK9kbSZQ/Access_4.jpg" width=640 height=532 mce_src="http://public.blu.livefilestore.com/y1pq_Kz26sfwmL2JbiFG8bQ3vjvA_j3wuTgErdB3Fe27C8FCNtTRpYj3kobnuIvyb4FMmgCfBQ74UIspmNK9kbSZQ/Access_4.jpg"&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;Corrina, Tsitsi, Vidya, and Susan&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9927729" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/corrinab/archive/tags/Control+Styles/default.aspx">Control Styles</category><category domain="http://blogs.msdn.com/corrinab/archive/tags/Silverlight/default.aspx">Silverlight</category><category domain="http://blogs.msdn.com/corrinab/archive/tags/Controls/default.aspx">Controls</category></item><item><title>Mix 09' Was Amazing!</title><link>http://blogs.msdn.com/corrinab/archive/2009/03/25/9508683.aspx</link><pubDate>Thu, 26 Mar 2009 00:53:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9508683</guid><dc:creator>CorrinaB</dc:creator><slash:comments>10</slash:comments><comments>http://blogs.msdn.com/corrinab/comments/9508683.aspx</comments><wfw:commentRss>http://blogs.msdn.com/corrinab/commentrss.aspx?PostID=9508683</wfw:commentRss><description>&lt;P&gt;&lt;A class="" href="http://live.visitmix.com/" mce_href="http://live.visitmix.com/"&gt;Mix 09'&lt;/A&gt; was amazing! There were so many great announcements and a wide variety of very interesting presentations.&amp;nbsp;The two&amp;nbsp;keynotes were exciting as well, and I particularly enjoyed the keynote on day 2 where &lt;A class="" href="http://videos.visitmix.com/MIX09/KEY02" mce_href="http://videos.visitmix.com/MIX09/KEY02"&gt;Deborah Adler talked in depth&lt;/A&gt;&amp;nbsp;about how she designed a comprehensive system for packaging prescription medicine for her master's thesis. Target saw great potential in Deborah's ideas and collaborated with her to develop the ClearRx system for prescription medicines; a system that is both beautiful and saves lives. Amazing stuff and very inspiring!&lt;/P&gt;
&lt;P&gt;I want to quickly call attention to some of the presentations that I found particularly interesting...&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A class="" href="http://videos.visitmix.com/MIX09/T40F" mce_href="http://videos.visitmix.com/MIX09/T40F"&gt;Building Amazing Business Centric Applications with Microsoft Silverlight 3&lt;/A&gt; In this presentation, Brad&amp;nbsp;shows how Silverlight 3 now makes it fast and easy to develop line of business applications. This is great stuff!&lt;/LI&gt;
&lt;LI&gt;&lt;A class="" href="http://videos.visitmix.com/MIX09/T41F" mce_href="http://videos.visitmix.com/MIX09/T41F"&gt;.NET RIA Services - Building Data-Driven Applications with Microsoft Silverlight and Microsoft ASP.NET&lt;/A&gt; In this presentation, Nikhil shows how Silverlight and ASP.Net can be used together to greatly simplify the n-tier application pattern. I would also recommend that you check out &lt;A class="" href="http://projects.nikhilk.net/SilverlightFX" mce_href="http://projects.nikhilk.net/SilverlightFX"&gt;Nikhil's Silverlight framework&lt;/A&gt; for building RIA applications! There are some great patterns in the framework that greatly simplify application development&lt;/LI&gt;
&lt;LI&gt;&lt;A class="" href="http://videos.visitmix.com/MIX09/T13F" mce_href="http://videos.visitmix.com/MIX09/T13F"&gt;Working across the Client Continuum&lt;/A&gt; In this presentation, Laurent shows how you can use the same WCF service for a variety of client applications including HTML, AJAX, ASP.Net, Silverlight, and WPF. He spells things out very clearly, and this presentation is a great learning tool!&lt;/LI&gt;
&lt;LI&gt;&lt;A class="" href="http://videos.visitmix.com/MIX09/C01F" mce_href="http://videos.visitmix.com/MIX09/C01F"&gt;Sketch Flow: From Concept to Production&lt;/A&gt; This is one of my favorite presentations! Christian does a terrific job of showing off many of the great new capabilities provided by Sketch Flow (a designers best friend). Be sure to check it out!&lt;/LI&gt;
&lt;LI&gt;&lt;A class="" href="http://videos.visitmix.com/MIX09/C04F" mce_href="http://videos.visitmix.com/MIX09/C04F"&gt;The Future of Microsoft Expression Blend&lt;/A&gt; In this presentation, Christian and Doug talk about the power Blend gives designers to control their creative vision in a productive and collaborative manner. This is a must see for designers!&lt;/LI&gt;
&lt;LI&gt;&lt;A class="" href="http://videos.visitmix.com/MIX09/C17F" mce_href="http://videos.visitmix.com/MIX09/C17F"&gt;Web Form Design&lt;/A&gt; This presentation describes the benefits of utilizing Ux patterns to improve the&amp;nbsp;user experience&amp;nbsp;of web forms. Very informative and detailed; well worth watching&lt;/LI&gt;
&lt;LI&gt;&lt;A class="" href="http://videos.visitmix.com/MIX09/C30M" mce_href="http://videos.visitmix.com/MIX09/C30M"&gt;User Experience Design for Non-Designers&lt;/A&gt; This is an interesting presentation that quickly describes the process of good user experience design. I really enjoyed it!&lt;/LI&gt;
&lt;LI&gt;&lt;A class="" href="http://videos.visitmix.com/MIX09/C21F" mce_href="http://videos.visitmix.com/MIX09/C21F"&gt;User Experience Design Patterns for Business Applications with Microsoft Silverlight 3&lt;/A&gt;&amp;nbsp;In this presentation,&amp;nbsp;I talk about core design principles, design patterns, and design attributes that can be used to create great business application user experiences. I also touch on how easy it is to implement several key business application design patterns in Silverlight 3&amp;nbsp;(I wish I had more time to drill into the details here)&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;The application I built during my Mix presentation is available &lt;A class="" href="http://cid-41ea2b2f3f18c5d6.skydrive.live.com/embedrowdetail.aspx/Public/Mix09/Mix09%7C_SampleApplication.zip" mce_href="http://cid-41ea2b2f3f18c5d6.skydrive.live.com/embedrowdetail.aspx/Public/Mix09/Mix09%7C_SampleApplication.zip"&gt;here&lt;/A&gt;, and&amp;nbsp;requires... 
&lt;OL&gt;
&lt;LI&gt;&lt;A href="http://www.microsoft.com/express/download/" mce_href="http://www.microsoft.com/express/download/"&gt;VS2008 SP1&lt;/A&gt; 
&lt;LI&gt;&lt;A href="http://silverlight.net/getstarted/silverlight3/default.aspx" mce_href="http://silverlight.net/getstarted/silverlight3/default.aspx"&gt;Silverlight 3 Beta&lt;/A&gt;&lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;I made a couple of minor tweaks to the application to improve the user experience from what I presented at Mix (e.g. the 'In Progress' page previously showed double sets of 'Save' and 'Cancel' buttons; I eliminated this problem), and, please note that there are a couple of bugs that may appear in the UI as you interact with it, and these are known issues (e.g. paging may not work consistently and deleting items from the main DataForm on the 'In Progress' page will throw an error if you delete any item&amp;nbsp;that sits right above a group header). &lt;/P&gt;
&lt;P&gt;Also, the two application styles I show at the beginning of my presentation are available &lt;A class="" href="http://cid-41ea2b2f3f18c5d6.skydrive.live.com/embedrowdetail.aspx/Public/Mix09/SampleApplicationStyles.zip" mce_href="http://cid-41ea2b2f3f18c5d6.skydrive.live.com/embedrowdetail.aspx/Public/Mix09/SampleApplicationStyles.zip"&gt;here&lt;/A&gt;, and look as follows when applied to your application when created using the new Silverlight 3 Navigation template...&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Frosted Cinnamon Toast&lt;/H3&gt;
&lt;P&gt;&lt;IMG style="WIDTH: 640px; HEIGHT: 606px" height=606 src="http://wk9hpg.blu.livefilestore.com/y1p7-OLy6MNlEabV76di5XtoFJBygBbsPlsqhH6K8qafSQyT0Bm9XOl-Pt4PqLXg-rS6WztaIe_uLkYWPIQw0YMaZJl8OSAc1gG/FrostedCinnamonToast.png" width=640 mce_src="http://wk9hpg.blu.livefilestore.com/y1p7-OLy6MNlEabV76di5XtoFJBygBbsPlsqhH6K8qafSQyT0Bm9XOl-Pt4PqLXg-rS6WztaIe_uLkYWPIQw0YMaZJl8OSAc1gG/FrostedCinnamonToast.png"&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Lime Shocker&lt;/H3&gt;
&lt;P&gt;&lt;IMG style="WIDTH: 640px; HEIGHT: 645px" height=645 src="http://wk9hpg.blu.livefilestore.com/y1p-1LsjcvG7QlamxzLdh66BxEcOA7ROcg2xX3w2cqj5AizGALvtCiePxLSH38gARowAPY26WD1FrI3Wzx5vE70ccyc8rBz_CyV/LimeShocker.png" width=640 mce_src="http://wk9hpg.blu.livefilestore.com/y1p-1LsjcvG7QlamxzLdh66BxEcOA7ROcg2xX3w2cqj5AizGALvtCiePxLSH38gARowAPY26WD1FrI3Wzx5vE70ccyc8rBz_CyV/LimeShocker.png"&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can easily swap in one of my App.xaml files for the App.xaml file produced when you use the Silverlight 3&amp;nbsp;Navigation template, but you may need to upate the namespace reference; for example, if I use the template to create an application called 'SLApp', the App.xaml file will show the following for the x:class '&lt;FONT color=#ff0000 size=2&gt;x&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;:&lt;/FONT&gt;&lt;FONT color=#ff0000 size=2&gt;Class&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;="SLApp1.App"'&lt;/FONT&gt;. My App.xaml file might use the following namespace, so you will need to update it to match yours, &lt;FONT color=#ff0000 size=2&gt;x&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;:&lt;/FONT&gt;&lt;FONT color=#ff0000 size=2&gt;Class&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;="UIOne.App"&lt;/FONT&gt;.&lt;/P&gt;
&lt;P&gt;I can't wait for Mix 10'! I hope you'll be there, but in the mean time be sure to check out the great Mix 09' content!&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9508683" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/corrinab/archive/tags/Silverlight/default.aspx">Silverlight</category><category domain="http://blogs.msdn.com/corrinab/archive/tags/Controls/default.aspx">Controls</category></item><item><title>Silverlight 2 Control Skins</title><link>http://blogs.msdn.com/corrinab/archive/2008/03/11/silverlight-2-control-skins.aspx</link><pubDate>Tue, 11 Mar 2008 03:32:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8141482</guid><dc:creator>CorrinaB</dc:creator><slash:comments>36</slash:comments><comments>http://blogs.msdn.com/corrinab/comments/8141482.aspx</comments><wfw:commentRss>http://blogs.msdn.com/corrinab/commentrss.aspx?PostID=8141482</wfw:commentRss><description>&lt;P&gt;Last week, Silverlight 2 beta one was the hot topic at the Mix 08 conference that took place in Las Vegas, and rightly so, as it now has even more great functionality to offer, and you can find out about specific details on &lt;A href="http://silverlight.net/GetStarted/" mce_href="http://silverlight.net/GetStarted/"&gt;Silverlight.net&lt;/A&gt; or on &lt;A href="http://weblogs.asp.net/scottgu/archive/2008/02/22/first-look-at-silverlight-2.aspx" mce_href="http://weblogs.asp.net/scottgu/archive/2008/02/22/first-look-at-silverlight-2.aspx"&gt;Scott Guthrie's blog&lt;/A&gt;. Scott's blog also contains several very informative walkthroughs detailing how to use much of the new functionality, and I highly recommend checking it out.&lt;/P&gt;
&lt;P&gt;One of the new aspects of Silverlight 2 that I'm most psyched about right now is the new set of controls that it has to offer; which includes...&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Button&lt;/LI&gt;
&lt;LI&gt;Toggle Button&lt;/LI&gt;
&lt;LI&gt;Radio Button&lt;/LI&gt;
&lt;LI&gt;Checkbox&lt;/LI&gt;
&lt;LI&gt;Texbox&lt;/LI&gt;
&lt;LI&gt;Tooltip&lt;/LI&gt;
&lt;LI&gt;Hyperlink&lt;/LI&gt;
&lt;LI&gt;Slider&lt;/LI&gt;
&lt;LI&gt;ScrollViewer&lt;/LI&gt;
&lt;LI&gt;Calendar&lt;/LI&gt;
&lt;LI&gt;Datepicker&lt;/LI&gt;
&lt;LI&gt;DataGrid&lt;/LI&gt;
&lt;LI&gt;ListBox&lt;/LI&gt;
&lt;LI&gt;etc…&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;The default controls look great as is, but I need variety, so a designer friend of mine and I decided to put together a few new sets of styles for the controls listed above. We now have three different sets that are ready for you to check out and two more that will be ready for consumption within the next two weeks. Here’s what we have now, and you can view the styled controls in action or download them to add to your project (Page.xaml contains my sample page layout and App.xaml contains the style definitions)….&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Bubbly&amp;nbsp; &lt;A href="http://www.corrina_b.members.winisp.net/skins/bubbly/Testpage.html" mce_href="http://www.corrina_b.members.winisp.net/skins/bubbly/Testpage.html"&gt;View&lt;/A&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;A href="http://www.corrina_b.members.winisp.net/skins/bubbly/bubbly.zip" mce_href="http://www.corrina_b.members.winisp.net/skins/bubbly/bubbly.zip"&gt;Download&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Red &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;A href="http://www.corrina_b.members.winisp.net/skins/red/Testpage.html" mce_href="http://www.corrina_b.members.winisp.net/skins/red/Testpage.html"&gt;View&lt;/A&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;A href="http://www.corrina_b.members.winisp.net/skins/red/red.zip" mce_href="http://www.corrina_b.members.winisp.net/skins/red/red.zip"&gt;Download&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Flat&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;A href="http://www.corrina_b.members.winisp.net/skins/flat/Testpage.html" mce_href="http://www.corrina_b.members.winisp.net/skins/flat/Testpage.html"&gt;View&lt;/A&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;A href="http://www.corrina_b.members.winisp.net/skins/flat/flat.zip" mce_href="http://www.corrina_b.members.winisp.net/skins/flat/flat.zip"&gt;Download&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P style="FONT-SIZE: 0.9em"&gt;The download for the Flat set of styles also contains a Page.xaml.cs, and a Page.xaml.vb file. The reason these files are there is because I'm auto generating my columns in my data grid and the only way I can control the styles for the column content is through code (I'm changing fontfamily and fontsize). If I weren't autogenerating the columns I could control the style for the column content in the way I have for every other control (in the case of datagrid, I would use ElementStyle and EditingElementStyle).&lt;/P&gt;
&lt;P style="FONT-SIZE: 0.9em" mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following set of steps describe some of the ways that you can apply these styles to your project.&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Apply Styles Globally&lt;/H3&gt;
&lt;P&gt;To use the styles globally in your project, open your App.xaml file and replace your &amp;lt;Application.Resources&amp;gt;...&amp;lt;/Application.Resources&amp;gt; with my &amp;lt;Application.Resources&amp;gt;...&amp;lt;/Application.Resources&amp;gt; for the set of styles that you are interested in using.&lt;/P&gt;
&lt;P&gt;Then, you can utilize the styles for controls throughout your project by adding a reference to the style of interest. For example, for button you would add the bold text below to the button tag,&lt;/P&gt;&lt;SPAN style="FONT-SIZE: 10pt; COLOR: blue; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'; mso-no-proof: yes; mso-fareast-font-family: 'Times New Roman'"&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: #a31515; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt;Button&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: red; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt; Content&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt;="hi"&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: red; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt; &lt;/SPAN&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: black; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'; mso-themecolor: text1; mso-no-proof: yes"&gt;Style="{StaticResource buttonStyle}"&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt;/&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/SPAN&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 5pt 0.25in"&gt;&lt;SPAN style="FONT-SIZE: 10pt; COLOR: blue; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'; mso-no-proof: yes; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Apply Styles to a Particular XAML Page&lt;/H3&gt;
&lt;P&gt;To use the styles in a particular XAML page, open the page and add the following below the opening UserControl tag, &amp;lt;UserControl.Resources&amp;gt;&amp;lt;/UserControl.Resources&amp;gt;, and then copy and paste my styles from App.xaml into the tag (minus &amp;lt;Application.Resources&amp;gt;&amp;lt;/Application.Resources&amp;gt;)&lt;/P&gt;
&lt;P&gt;Then, you can utilize the styles for controls throughout the XAML page by adding a reference to the style of interest. For example, for button you would do exactly as described in the previous example, and add the bolded text below to the button tag,&lt;/P&gt;&lt;SPAN style="FONT-SIZE: 10pt; COLOR: blue; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'; mso-no-proof: yes; mso-fareast-font-family: 'Times New Roman'"&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: #a31515; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt;Button&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: red; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt; Content&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt;="hi"&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: red; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt; &lt;/SPAN&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: black; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'; mso-themecolor: text1; mso-no-proof: yes"&gt;Style="{StaticResource buttonStyle}"&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'; mso-no-proof: yes"&gt;/&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/SPAN&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 5pt 0.25in"&gt;&lt;SPAN style="FONT-SIZE: 10pt; COLOR: blue; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'; mso-no-proof: yes; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Apply a Style to a Particular Control Inline&lt;/H3&gt;
&lt;P&gt;To use a style for a particular control inline, place the style directly in the control of interest. For example, for button you would add the following to your button tag (you also need to remove the x:Key attribute from the style tag as shown in the comment below)&lt;/P&gt;&lt;SPAN style="FONT-SIZE: 10pt; COLOR: blue; LINE-HEIGHT: 115%; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: 'Times New Roman'"&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: 'Times New Roman'"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: #a31515; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: 'Times New Roman'"&gt;Button&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: red; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: 'Times New Roman'"&gt; Content&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: 'Times New Roman'"&gt;="hi"&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; TEXT-INDENT: 0.5in; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: 'Times New Roman'"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: #a31515; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: 'Times New Roman'"&gt;Button.Style&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: 'Times New Roman'"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 1in; LINE-HEIGHT: normal; mso-layout-grid-align: none"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: #00b050; FONT-FAMILY: 'Courier New'; mso-no-proof: yes; mso-fareast-font-family: 'Times New Roman'"&gt;&amp;lt;!-- Button --&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 1in; LINE-HEIGHT: normal; mso-layout-grid-align: none"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: #00b050; FONT-FAMILY: 'Courier New'; mso-no-proof: yes; mso-fareast-font-family: 'Times New Roman'"&gt;&amp;lt;!-- ORIGINAL STYLE TAG NEEDS X:KEY REMOVED&amp;nbsp;AS SHOWN BELOW, HERE'S THE ORIGINAL TAG ----&amp;gt;&amp;nbsp;&amp;lt;Style &lt;S&gt;x:Key="buttonStyle"&lt;/S&gt; TargetType="Button"&amp;gt;--&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 1in; LINE-HEIGHT: normal; mso-layout-grid-align: none"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; FONT-FAMILY: 'Courier New'; mso-no-proof: yes; mso-fareast-font-family: 'Times New Roman'"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: #a31515; FONT-FAMILY: 'Courier New'; mso-no-proof: yes; mso-fareast-font-family: 'Times New Roman'"&gt;Style&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: red; FONT-FAMILY: 'Courier New'; mso-no-proof: yes; mso-fareast-font-family: 'Times New Roman'"&gt; TargetType&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; FONT-FAMILY: 'Courier New'; mso-no-proof: yes; mso-fareast-font-family: 'Times New Roman'"&gt;="Button"&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 1in; TEXT-INDENT: 0.5in; LINE-HEIGHT: normal; mso-layout-grid-align: none"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; FONT-FAMILY: 'Courier New'; mso-no-proof: yes; mso-fareast-font-family: 'Times New Roman'"&gt;&amp;lt;REST OF STYLE HERE BUT I'M NOT SHOWING IT :)--&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 1in; LINE-HEIGHT: normal; mso-layout-grid-align: none"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; FONT-FAMILY: 'Courier New'; mso-no-proof: yes; mso-fareast-font-family: 'Times New Roman'"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: #a31515; FONT-FAMILY: 'Courier New'; mso-no-proof: yes; mso-fareast-font-family: 'Times New Roman'"&gt;Style&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; TEXT-INDENT: 0.5in; LINE-HEIGHT: normal"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: 'Times New Roman'"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: #a31515; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: 'Times New Roman'"&gt;Button.Style&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: 'Times New Roman'"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; FONT-FAMILY: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman'"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormalCxSpMiddle style="MARGIN: auto auto 0pt; LINE-HEIGHT: normal; mso-add-space: auto"&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: 'Times New Roman'"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: #a31515; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: 'Times New Roman'"&gt;Button&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 8pt; COLOR: blue; FONT-FAMILY: 'Courier New'; mso-fareast-font-family: 'Times New Roman'"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/SPAN&gt;
&lt;P class=MsoNormalCxSpFirst style="MARGIN: auto auto auto 0.5in; TEXT-INDENT: -0.25in; LINE-HEIGHT: normal; mso-add-space: auto; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto"&gt;&lt;SPAN style="FONT-SIZE: 10pt; COLOR: #0d0d0d; FONT-FAMILY: 'Segoe UI','sans-serif'; mso-themecolor: text1; mso-fareast-font-family: 'Times New Roman'; mso-themetint: 242"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Please ping me with questions if anything is unclear.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8141482" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/corrinab/archive/tags/Corrina+Barber/default.aspx">Corrina Barber</category><category domain="http://blogs.msdn.com/corrinab/archive/tags/Control+Styles/default.aspx">Control Styles</category><category domain="http://blogs.msdn.com/corrinab/archive/tags/Silverlight/default.aspx">Silverlight</category><category domain="http://blogs.msdn.com/corrinab/archive/tags/Controls/default.aspx">Controls</category><category domain="http://blogs.msdn.com/corrinab/archive/tags/Control+Skins/default.aspx">Control Skins</category><category domain="http://blogs.msdn.com/corrinab/archive/tags/Silverlight2/default.aspx">Silverlight2</category></item></channel></rss>