<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com - Stories tagged with xaml</title>
    <description>the latest stories tagged with 'xaml' from DotNetKicks.com</description>
    <link>http://www.dotnetkicks.com/</link>
    <language>en-us</language>
    <copyright>Atweb Publishing Ltd.</copyright>
    <docs>http://backend.userland.com/rss</docs>
    <generator>DotNetKicks.com - .NET links, community driven</generator>
    <ttl>30</ttl>
    <item>
      <title>This whimsical binding. TwoWay Binding to DataContext. Binding in WPF </title>
      <description>I often use Binding to DataContext. It is one of the main advantage of WPF. In most case I set custom class inherit of DependencyObject (for support DependencyProperty) and I have some like next code:

&amp;lt;StackPanel&amp;gt;
&amp;lt;TextBlock Text=&amp;quot;{Binding Path=Id}&amp;quot; /&amp;gt;
&amp;lt;TextBlock Text=&amp;quot;{Binding Path=Name}&amp;quot; /&amp;gt;
&amp;lt;TextBlock Text=&amp;quot;{Binding Path=Surname}&amp;quot;/&amp;gt;
...
&amp;lt;/StackPanel&amp;gt;

But sometime I set a simple type for example string. For this case I can implement next Binding:

&amp;lt;TextBlock Text=&amp;quot;{Binding}&amp;quot; /&amp;gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2frredcat.blogspot.com%2f2009%2f06%2fthis-whimsical-binding-twoway-binding.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2frredcat.blogspot.com%2f2009%2f06%2fthis-whimsical-binding-twoway-binding.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/This_whimsical_binding_TwoWay_Binding_to_DataContext_Binding_in_WPF</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/This_whimsical_binding_TwoWay_Binding_to_DataContext_Binding_in_WPF</guid>
      <pubDate>Tue, 16 Jun 2009 22:14:31 GMT</pubDate>
    </item>
    <item>
      <title>Customize Visual Studio 2010 Beta 1 Start Page using WPF/XAML</title>
      <description>My name is Adrian Collier and I am the Program Manager responsible for the Start Page in the Visual Studio. One of the coolest things we can do in this release is to create custom start pages using WPF. This post details how to get up and running with this feature, along with some warnings on how this feature will be changing. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblogs.msdn.com%2fvsxteam%2farchive%2f2009%2f05%2f20%2fvisual-studio-2010-beta-1-start-page-customization.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblogs.msdn.com%2fvsxteam%2farchive%2f2009%2f05%2f20%2fvisual-studio-2010-beta-1-start-page-customization.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Customize_Visual_Studio_2010_Beta_1_Start_Page_using_WPF_XAML</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Customize_Visual_Studio_2010_Beta_1_Start_Page_using_WPF_XAML</guid>
      <pubDate>Sat, 23 May 2009 00:39:31 GMT</pubDate>
    </item>
    <item>
      <title>Implementing support of own child/children in WPF control.</title>
      <description>The best way for use child/children in WPF is customize any control with property for child/children that inherit from Control (for example ContentControl or ItemsControl). Control has wide possibility of customizing through ControlTemplate. But sometime we want to have specific behaviour of child/children (for example if we want to implement MDI container any other specific container). What should you do for implementing this behaviour? I will show major steps in sample of simple custom panel that is inherited from FrameworkElement. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2frredcat.blogspot.com%2f2009%2f05%2fimplementing-support-of-own.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2frredcat.blogspot.com%2f2009%2f05%2fimplementing-support-of-own.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/Implementing_support_of_own_child_children_in_WPF_control</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/Implementing_support_of_own_child_children_in_WPF_control</guid>
      <pubDate>Wed, 20 May 2009 06:15:57 GMT</pubDate>
    </item>
    <item>
      <title>Do you know how can you obtain access to nested types through XAML?</title>
      <description>XAML is a declarative XML-based language created by Microsoft which is used to initialize structured values and objects. I have already written how we can obtain access to properties of instance that located in other properties here (I have described binding's potential). But what can we do if we need to access to nested type?  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2frredcat.blogspot.com%2f2009%2f04%2ftrips-do-you-know-how-can-you-obtain.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2frredcat.blogspot.com%2f2009%2f04%2ftrips-do-you-know-how-can-you-obtain.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/Do_you_know_how_can_you_obtain_access_to_nested_types_through_XAML</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/Do_you_know_how_can_you_obtain_access_to_nested_types_through_XAML</guid>
      <pubDate>Tue, 14 Apr 2009 15:01:16 GMT</pubDate>
    </item>
    <item>
      <title>Silverlight resources for designers</title>
      <description>When I am training Silverlight I am often asked by designers how to find resources on Silverlight/XAML/Expression, so here is a post for them. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2flduveau%2farchive%2f2008%2f11%2f25%2fsilverlight-resources-for-designers.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2flduveau%2farchive%2f2008%2f11%2f25%2fsilverlight-resources-for-designers.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Silverlight_resources_for_designers</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Silverlight_resources_for_designers</guid>
      <pubDate>Wed, 26 Nov 2008 07:04:59 GMT</pubDate>
    </item>
    <item>
      <title>RIA in Sharepoint: Silverlight with 3D Extended DeepZoom - so cool</title>
      <description>NOTE: There is an interesting contest to find an image in this. Check the post.

Long story short, this is an effort to bring RIA to the SharePoint world. But not just RIA style usability, I believe we pushed the envelope even further by incorporating not only DeepZoom (SeaDragon) for 'zoom in to the pixel' resolution, but the 3D extensions not present by default (you have the essentials but only the amazingly talented people behind the Hard Rock Memorabilia site (vertigo) have shown this style of combined zoom/3d that we have seen in any largely deployed sample) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.domaindotnet.com%2f2008%2f11%2f19%2freleased-silverlight-3d-for-sharepoint-moss-2007-try-it-here-now%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.domaindotnet.com%2f2008%2f11%2f19%2freleased-silverlight-3d-for-sharepoint-moss-2007-try-it-here-now%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/RIA_in_Sharepoint_Silverlight_with_3D_Extended_DeepZoom_so_cool</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/RIA_in_Sharepoint_Silverlight_with_3D_Extended_DeepZoom_so_cool</guid>
      <pubDate>Thu, 20 Nov 2008 12:04:50 GMT</pubDate>
    </item>
    <item>
      <title>Programming ListBox Control in XAML and WPF                </title>
      <description>This 20 pages tutorial shows you how to create and use a ListBox control in WPF and XAML. The tutorial also covers styling and formatting, add images, checkboxes, and data binding in a ListBox contrtol. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.longhorncorner.com%2fUploadFile%2flheditor%2fWPfLB08262008103013AM%2fWPfLB.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.longhorncorner.com%2fUploadFile%2flheditor%2fWPfLB08262008103013AM%2fWPfLB.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/Programming_ListBox_Control_in_XAML_and_WPF</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/Programming_ListBox_Control_in_XAML_and_WPF</guid>
      <pubDate>Wed, 03 Sep 2008 21:27:37 GMT</pubDate>
    </item>
    <item>
      <title>XAML Power Toys</title>
      <description>Karl has released a excellent add-in for Visual Studio called the XAML Power Toys &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdotnet.org.za%2frudi%2farchive%2f2008%2f09%2f01%2fxaml-power-toys.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdotnet.org.za%2frudi%2farchive%2f2008%2f09%2f01%2fxaml-power-toys.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/XAML_Power_Toys</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/XAML_Power_Toys</guid>
      <pubDate>Tue, 02 Sep 2008 10:01:09 GMT</pubDate>
    </item>
    <item>
      <title>My version of Snoop (+ 2 features)</title>
      <description>I think that every WPF developer knows that is Snoop. This is helpful tool (with source code (!!) ) for visual debugging of WPF's app at runtime. It is good but I was in need of some expansions.

   1. I needed to see Template of controls in visual tree.
   2. I needed to keep a/some couple (value and property) of control in visual tree.

I implemented this issues for self purpose and want to impart this to all. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2frredcat.blogspot.com%2f2008%2f07%2fmy-version-of-snoop-2-features.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2frredcat.blogspot.com%2f2008%2f07%2fmy-version-of-snoop-2-features.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/My_version_of_Snoop_2_features</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/My_version_of_Snoop_2_features</guid>
      <pubDate>Thu, 31 Jul 2008 08:31:42 GMT</pubDate>
    </item>
    <item>
      <title>More on XAML Serialization</title>
      <description>The hidden story behind serialization of collections.  Short version:  You have to implement IDictionary or IList, or be an ArrayExtension.  Oh, and stay far away from IAddChild. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fstatestreetgang.net%2fpost%2f2008%2f07%2fMore-on-XAML-Serialization.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fstatestreetgang.net%2fpost%2f2008%2f07%2fMore-on-XAML-Serialization.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/More_on_XAML_Serialization</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/More_on_XAML_Serialization</guid>
      <pubDate>Wed, 30 Jul 2008 20:53:29 GMT</pubDate>
    </item>
    <item>
      <title>Wave Reflection Effect</title>
      <description>Reflection effect using Pixel Shader in WPF 3.5 Sp1 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2frakeshravuri.blogspot.com%2f2008%2f07%2fwave-reflection-shader-effect-in-wpf.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2frakeshravuri.blogspot.com%2f2008%2f07%2fwave-reflection-shader-effect-in-wpf.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/Wave_Reflection_Effect</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/Wave_Reflection_Effect</guid>
      <pubDate>Sat, 26 Jul 2008 04:01:05 GMT</pubDate>
    </item>
    <item>
      <title>Recreating Simple Windows Forms in WPF and XAML (Part 3)</title>
      <description>Blogging about learning WPF and XAML. Starting with learning how to make standard windows forms. Multi-part article starting with a messy XAML definition and working forward. This part of the series covers how to use Styles, external Resource Dictionaries, and includes updated XAML files and screenshots for the series. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.smartypantscoding.com%2fcontent%2frecreating-simple-windows-forms-wpf-and-xaml-part-3"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.smartypantscoding.com%2fcontent%2frecreating-simple-windows-forms-wpf-and-xaml-part-3" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/Recreating_Simple_Windows_Forms_in_WPF_and_XAML_Part_3</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/Recreating_Simple_Windows_Forms_in_WPF_and_XAML_Part_3</guid>
      <pubDate>Sun, 13 Jul 2008 22:39:20 GMT</pubDate>
    </item>
    <item>
      <title>Recreating Simple Windows Forms in WPF and XAML (Part 2)</title>
      <description>Blogging about learning WPF and XAML. Starting with learning how to make standard windows forms. Multi-part article starting with a messy XAML definition and working forward. This part of the series covers a quick way to break out your colors into one location instead of having them all inline. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.smartypantscoding.com%2fcontent%2frecreating-simple-windows-forms-wpf-and-xaml-part-2"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.smartypantscoding.com%2fcontent%2frecreating-simple-windows-forms-wpf-and-xaml-part-2" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/Recreating_Simple_Windows_Forms_in_WPF_and_XAML_Part_2</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/Recreating_Simple_Windows_Forms_in_WPF_and_XAML_Part_2</guid>
      <pubDate>Sat, 12 Jul 2008 21:48:15 GMT</pubDate>
    </item>
    <item>
      <title>WPF XAML MenuItem Styles</title>
      <description>In this post I discuss how to create a Style for the MenuItem object in WPF.  This style will display a black menu with white text and border. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.jimnuzzi.com%2fblog%2fpost%2f2008%2f06%2f29%2fWPF-XAML-MenuItem-Styles.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.jimnuzzi.com%2fblog%2fpost%2f2008%2f06%2f29%2fWPF-XAML-MenuItem-Styles.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/WPF_XAML_MenuItem_Styles</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/WPF_XAML_MenuItem_Styles</guid>
      <pubDate>Sat, 12 Jul 2008 04:07:51 GMT</pubDate>
    </item>
    <item>
      <title>Recreating Simple Windows Forms in WPF and XAML (Part 1)</title>
      <description>Blogging about learning WPF and XAML. Starting with learning how to make standard windows forms. Multi-part article starting with messy XAML definition and working forward. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.smartypantscoding.com%2fcontent%2frecreating-simple-windows-forms-wpf-and-xaml-part-1"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.smartypantscoding.com%2fcontent%2frecreating-simple-windows-forms-wpf-and-xaml-part-1" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/Recreating_Simple_Windows_Forms_in_WPF_and_XAML_Part_1</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/Recreating_Simple_Windows_Forms_in_WPF_and_XAML_Part_1</guid>
      <pubDate>Fri, 11 Jul 2008 21:45:00 GMT</pubDate>
    </item>
    <item>
      <title>Xaml Without WPF</title>
      <description>Without using WPF (or Workflow Foundation for that matter), how useful is Xaml on it's own? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fgenesisconduit.wordpress.com%2f2008%2f07%2f10%2fxaml-without-wpf%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fgenesisconduit.wordpress.com%2f2008%2f07%2f10%2fxaml-without-wpf%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/Xaml_Without_WPF</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/Xaml_Without_WPF</guid>
      <pubDate>Fri, 11 Jul 2008 12:45:42 GMT</pubDate>
    </item>
    <item>
      <title>XAML Serialization FTW</title>
      <description>Some notes on my journey from XML serialization to XAML serialization of POCO's. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fstatestreetgang.net%2fpost%2f2008%2f06%2fXAML-Serialization-FTW.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fstatestreetgang.net%2fpost%2f2008%2f06%2fXAML-Serialization-FTW.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/XAML_Serialization_FTW</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/XAML_Serialization_FTW</guid>
      <pubDate>Mon, 23 Jun 2008 21:51:59 GMT</pubDate>
    </item>
    <item>
      <title>Silverlight 2 Visibility Bug With The Canvas</title>
      <description>A solution to the Visibility bug with the Canvas in Silverlight 2. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.jeffblankenburg.com%2f2008%2f06%2fsilverlight-2-visibility-bug-with.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.jeffblankenburg.com%2f2008%2f06%2fsilverlight-2-visibility-bug-with.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Silverlight_2_Visibility_Bug_With_The_Canvas</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Silverlight_2_Visibility_Bug_With_The_Canvas</guid>
      <pubDate>Thu, 19 Jun 2008 10:01:02 GMT</pubDate>
    </item>
    <item>
      <title>Silverlight Layout Options - The Grid (Part 3 of 3)</title>
      <description>The last of three parts on Silverlight layout.  This article discusses the use of the grid as our layout option. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.jeffblankenburg.com%2f2008%2f06%2fsilverlight-layout-options-grid-part-3.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.jeffblankenburg.com%2f2008%2f06%2fsilverlight-layout-options-grid-part-3.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Silverlight_Layout_Options_The_Grid_Part_3_of_3</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Silverlight_Layout_Options_The_Grid_Part_3_of_3</guid>
      <pubDate>Wed, 18 Jun 2008 03:39:05 GMT</pubDate>
    </item>
    <item>
      <title>Silverlight Layout Options - The StackPanel (Part 2 of 3)</title>
      <description>The second of three parts on Silverlight layout.  This article discusses the use of the StackPanel as our layout option. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.jeffblankenburg.com%2f2008%2f06%2fsilverlight-layout-options-stack-panel.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.jeffblankenburg.com%2f2008%2f06%2fsilverlight-layout-options-stack-panel.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Silverlight_Layout_Options_The_StackPanel_Part_2_of_3</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Silverlight_Layout_Options_The_StackPanel_Part_2_of_3</guid>
      <pubDate>Wed, 18 Jun 2008 03:38:14 GMT</pubDate>
    </item>
    <item>
      <title>Silverlight Layout Options - The Canvas (Part 1 of 3)</title>
      <description>The first of three parts on Silverlight layout.  This article discusses the use of the canvas as our layout option. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.jeffblankenburg.com%2f2008%2f06%2fsilverlight-layout-options-canvas-part.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.jeffblankenburg.com%2f2008%2f06%2fsilverlight-layout-options-canvas-part.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Silverlight_Layout_Options_The_Canvas_Part_1_of_3</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Silverlight_Layout_Options_The_Canvas_Part_1_of_3</guid>
      <pubDate>Wed, 18 Jun 2008 03:37:19 GMT</pubDate>
    </item>
    <item>
      <title>Silverlight 2.0 almost WPF</title>
      <description>Silverlight 2.0 Beta is available now. So what's new in this version compared to Silverlight 1.0/1.1? In easy words: It's (almost) as powerful as WPF. This article will help you getting started with Silverlight 2.0 and VS 2008. We will explain the installation of the Silverlight Tools for VS 2008 and create a little Silverlight project using new Layout-functionalities and controls. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.codegod.de%2fWebAppCodeGod%2fSilverlight-2-0-and-ASP-NET-tutorial-Getting-started-AID474.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.codegod.de%2fWebAppCodeGod%2fSilverlight-2-0-and-ASP-NET-tutorial-Getting-started-AID474.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Silverlight_2_0_almost_WPF</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Silverlight_2_0_almost_WPF</guid>
      <pubDate>Sat, 24 May 2008 20:03:11 GMT</pubDate>
    </item>
    <item>
      <title>How to handle Themes in wpf</title>
      <description>This article explain how to load a theme at runtime and apply it to wpf controls. This permits to personlize the interface even after the application is deployed. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2f%3fp%3d271"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2f%3fp%3d271" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/How_to_handle_Themes_in_wpf</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/How_to_handle_Themes_in_wpf</guid>
      <pubDate>Fri, 23 May 2008 00:16:02 GMT</pubDate>
    </item>
    <item>
      <title>Regex in WPF</title>
      <description>First look at a WPF regex tool I'm working on to learn WPF (databinding, skinning, etc).   &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fstatestreetgang.net%2fpost%2f2008%2f05%2fRegex-and-WPF.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fstatestreetgang.net%2fpost%2f2008%2f05%2fRegex-and-WPF.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/Regex_in_WPF</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/Regex_in_WPF</guid>
      <pubDate>Thu, 15 May 2008 10:01:04 GMT</pubDate>
    </item>
    <item>
      <title>Create a dynamic map of countries from map in svg fila and xml data</title>
      <description>See how to convert a map of EU countries in svg file to a Silverlight application with ViewerSvg. The tutorial will also show how to read the data from xml file and how to use data binding. The application will show the basic data about the country that is selected with the mouse. There is also a slider that shows when the countries were joining the EU. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.wpf-graphics.com%2fHowTo_Sl_EU.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.wpf-graphics.com%2fHowTo_Sl_EU.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Create_a_dynamic_map_of_countries_from_map_in_svg_fila_and_xml_data</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Create_a_dynamic_map_of_countries_from_map_in_svg_fila_and_xml_data</guid>
      <pubDate>Wed, 07 May 2008 01:01:07 GMT</pubDate>
    </item>
  </channel>
</rss>