<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" version="2.0">

<channel>
	<title>Silverlight Blog</title>
	
	<link>http://silverlightblog.saschabaumann.com</link>
	<description>Alles Rund um Microsoft Silverlight - Blog.SilverlightDeveloper.de</description>
	<pubDate>Tue, 27 Oct 2009 20:42:56 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/saschabaumann/silverlightBlog" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Styles from different files as static resources</title>
		<link>http://silverlightblog.saschabaumann.com/2009/10/styles-from-different-files-as-static-resources/</link>
		<comments>http://silverlightblog.saschabaumann.com/2009/10/styles-from-different-files-as-static-resources/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 20:42:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://silverlightblog.saschabaumann.com/?p=81</guid>
		<description><![CDATA[Hello everyone,
to start a silverlight project, i have a kind of default-template which I enriched with a CSS-like decentralized style today. This is done very easy now in Silverlight 3. First you habe to set up a file containing your style. In my case it was a file in a new Styles folder called TextBock.Default.xaml [...]]]></description>
			<content:encoded><![CDATA[<p>Hello everyone,</p>
<p>to start a silverlight project, i have a kind of default-template which I enriched with a CSS-like decentralized style today. This is done very easy now in Silverlight 3. First you habe to set up a file containing your style. In my case it was a file in a new Styles folder called <i>TextBock.Default.xaml</i> where I entered this dummy code:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ResourceDictionary</span></span>
<span style="color: #009900;">    <span style="color: #000066;">xmlns</span>=<span style="color: #ff0000;">&quot;http://schemas.microsoft.com/winfx/2006/xaml/presentation&quot;</span> </span>
<span style="color: #009900;">    <span style="color: #000066;">xmlns:x</span>=<span style="color: #ff0000;">&quot;http://schemas.microsoft.com/winfx/2006/xaml&quot;</span> </span>
<span style="color: #009900;">    <span style="color: #000066;">xmlns:Windows</span>=<span style="color: #ff0000;">&quot;clr-namespace:System.Windows;assembly=System.Windows&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Windows:Style</span> <span style="color: #000066;">x:Key</span>=<span style="color: #ff0000;">&quot;TextBlock.Default&quot;</span> <span style="color: #000066;">TargetType</span>=<span style="color: #ff0000;">&quot;TextBlock&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Windows:Setter</span> <span style="color: #000066;">Property</span>=<span style="color: #ff0000;">&quot;FontFamily&quot;</span> <span style="color: #000066;">Value</span>=<span style="color: #ff0000;">&quot;Times New Roman&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Windows:Setter</span> <span style="color: #000066;">Property</span>=<span style="color: #ff0000;">&quot;FontSize&quot;</span> <span style="color: #000066;">Value</span>=<span style="color: #ff0000;">&quot;16&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Windows:Setter</span> <span style="color: #000066;">Property</span>=<span style="color: #ff0000;">&quot;Foreground&quot;</span> <span style="color: #000066;">Value</span>=<span style="color: #ff0000;">&quot;Black&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Windows:Setter</span> <span style="color: #000066;">Property</span>=<span style="color: #ff0000;">&quot;LineHeight&quot;</span> <span style="color: #000066;">Value</span>=<span style="color: #ff0000;">&quot;26&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Windows:Style<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/ResourceDictionary<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>after that, I created a MergedDictionary in my app.xaml like that:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"> <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Application.Resources<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
         <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ResourceDictionary<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
             <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ResourceDictionary.MergedDictionaries<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
                 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ResourceDictionary</span> <span style="color: #000066;">Source</span>=<span style="color: #ff0000;">&quot;Styles/TextBlock.Default.xaml&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
             <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/ResourceDictionary.MergedDictionaries<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
          <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/ResourceDictionary<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
     <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Application.Resources<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>from now on, you can call this style like you&#8217;re used to with <b>{StaticResource TextBlock.Default}</b> within your application. Nice way to manage the styles as I think, and much easier to maintain than having all your styles plugged in your app.xaml in total.</p>
<p>Have fun playing with it :o)<br />
Sascha</p>
]]></content:encoded>
			<wfw:commentRss>http://silverlightblog.saschabaumann.com/2009/10/styles-from-different-files-as-static-resources/feed/</wfw:commentRss>
		</item>
		<item>
		<title>InitParams with Out-Of-Browser Apps</title>
		<link>http://silverlightblog.saschabaumann.com/2009/09/initparams-with-out-of-browser-apps/</link>
		<comments>http://silverlightblog.saschabaumann.com/2009/09/initparams-with-out-of-browser-apps/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 08:00:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Allgemein]]></category>

		<category><![CDATA[Out-Of-Browser]]></category>

		<guid isPermaLink="false">http://silverlightblog.saschabaumann.com/?p=76</guid>
		<description><![CDATA[Hello everyone,
I just tried to figure out, how to pass initial parameters to a Silverlight App, that runs out of browser. We dont have a Webpage to pass InitParams and we cannot access Web.Config entries. 
So i came up with the idea, to use Isolated Storage for this task. Before installing an App Out-Of-Browser we [...]]]></description>
			<content:encoded><![CDATA[<p>Hello everyone,</p>
<p>I just tried to figure out, how to pass initial parameters to a Silverlight App, that runs out of browser. We dont have a Webpage to pass InitParams and we cannot access Web.Config entries. </p>
<p>So i came up with the idea, to use Isolated Storage for this task. Before installing an App Out-Of-Browser we need to access the Webpage. In this case, we can read the initial paramters from Web.Config or from Silverlight-Tag, and store them to Isolated Storage. </p>
<p>Now we need a code-block to check, if app runs OOB (Application.Current.IsOutOfBrowser) and in this case, we read the paramters from Isolated Storage instead. So the OOB-App is configured the same way as the Web-App.</p>
<p>This was just one Idea, that worked. Any other suggestions are very welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://silverlightblog.saschabaumann.com/2009/09/initparams-with-out-of-browser-apps/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Silverlight 3 Out of Browser Experience</title>
		<link>http://silverlightblog.saschabaumann.com/2009/09/silverlight-3-out-of-browser-experience/</link>
		<comments>http://silverlightblog.saschabaumann.com/2009/09/silverlight-3-out-of-browser-experience/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 11:36:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Allgemein]]></category>

		<category><![CDATA[Out-Of-Browser]]></category>

		<guid isPermaLink="false">http://silverlightblog.saschabaumann.com/?p=72</guid>
		<description><![CDATA[Hello everyone !

Hallo zusammen,
um schlichtweg mehr Leser anzusprechen werde ich die Blog-Sprache auf englisch umstellen. Ich hoffe, es stört nicht zu sehr :o)

A nice video about the usage of silverlight apps out-of-browser by Tim Heuer can be found here:
Video about Out-Of-Browser Experience
]]></description>
			<content:encoded><![CDATA[<p>Hello everyone !</p>
<hr/>
<p>Hallo zusammen,</p>
<p>um schlichtweg mehr Leser anzusprechen werde ich die Blog-Sprache auf englisch umstellen. Ich hoffe, es stört nicht zu sehr :o)</p>
<hr/>
<p>A nice video about the usage of silverlight apps out-of-browser by Tim Heuer can be found here:</p>
<p><a href="http://www.silverlight.net/learn/videos/silverlight-videos/out-of-browser-experiences/" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.silverlight.net');">Video about Out-Of-Browser Experience</a></p>
]]></content:encoded>
			<wfw:commentRss>http://silverlightblog.saschabaumann.com/2009/09/silverlight-3-out-of-browser-experience/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mike Snows ‘Silverlight Tips of the Day’ #91 -#100</title>
		<link>http://silverlightblog.saschabaumann.com/2009/03/mike-snows-silverlight-tips-of-the-day-91-100/</link>
		<comments>http://silverlightblog.saschabaumann.com/2009/03/mike-snows-silverlight-tips-of-the-day-91-100/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 22:28:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://silverlightblog.saschabaumann.com/?p=50</guid>
		<description><![CDATA[Bei Mike Snow geht es Schlag auf Schlag, und jetzt  hat er schon den 100sten &#8220;Tip of the Day&#8221; für Silverlight online gestellt. Herzlichen Glückwunsch von mir, und hier eine Zusammenfassung der letzten 10 Posts&#8230;
Besonders interessant ist für Entwickler der 100te Post. Dort geht es um die Details der kommenden Version 3 von Silverlight, [...]]]></description>
			<content:encoded><![CDATA[<p>Bei Mike Snow geht es Schlag auf Schlag, und jetzt  hat er schon den 100sten &#8220;Tip of the Day&#8221; für Silverlight online gestellt. Herzlichen Glückwunsch von mir, und hier eine Zusammenfassung der letzten 10 Posts&#8230;</p>
<p>Besonders interessant ist für Entwickler der 100te Post. Dort geht es um die Details der kommenden Version 3 von Silverlight, deren Beta 1 man sich unter <a href="http://silverlight.net/getstarted/silverlight3/default.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">http://silverlight.net/getstarted/silverlight3/default.aspx</a> herunterladen kann</p>
<ul>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/03/19/silverlight-tip-of-the-day-100-silverlight-3-beta-1-is-released.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #100 – Silverlight 3 Beta 1 Feature Summary</a></li>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/03/19/silverlight-tip-of-the-day-99-componentart-controls.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #99 – ComponentArt Controls</a></li>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/03/09/silverlight-tip-of-the-day-98-silverlight-3-game-programming-book.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #98 – Silverlight 3 Game Programming Book</a></li>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/03/02/silverlight-tip-of-the-day-97-creating-sprites-from-3d-models-envygames.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #97 – Creating Sprites from 3D Models - EnvyGames</a></li>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/02/20/silverlight-tip-of-the-day-96-the-meaning-of-ag-e-parser-bad-property-value.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #96 – The meaning of AG_E_PARSER_BAD_PROPERTY_</a></li>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/02/19/silverlight-tip-of-the-day-95-working-with-strokes-in-shapes.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #95 – Working with Strokes in Shapes</a></li>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/02/11/silverlight-tip-of-the-day-94-reading-xml-through-linq-with-silverlight.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #94 – Reading XML through LINQ with Silverlight</a></li>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/02/10/silverlight-tip-of-the-day-93-reading-xml-with-silverlight.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #93 – Reading XML with Silverlight</a></li>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/02/09/silverlight-tip-of-the-day-92-how-to-load-images-from-a-stream.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #92 – How to Load Images from a Stream</a></li>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/02/09/silverlight-tip-of-the-day-91-how-to-apply-themes-from-the-silverlight-toolkit.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #91 – How to Apply Themes from the Silverlight Toolkit</a></li>
<p><br/><br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://silverlightblog.saschabaumann.com/2009/03/mike-snows-silverlight-tips-of-the-day-91-100/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Update der Silverlight Runtime (auf GDR1)</title>
		<link>http://silverlightblog.saschabaumann.com/2009/02/update-der-silverlight-runtime-auf-gdr1/</link>
		<comments>http://silverlightblog.saschabaumann.com/2009/02/update-der-silverlight-runtime-auf-gdr1/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 14:47:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://silverlightblog.saschabaumann.com/?p=56</guid>
		<description><![CDATA[Bei Microsoft geht man wiedermal ein wenig andere Wege als gewohnt und veröffentlicht nicht etwa ein Service Pack für die Silverlight Runtime sondern eine neue Version - Die Silverlight 2 GDR1 (General Distribution Release 1). 
Die Installation unterscheidet sich je nach dem, ob man vorher das End-User-Plugin oder das Developer-Plugin installiert hatte. Hier die beiden [...]]]></description>
			<content:encoded><![CDATA[<p>Bei Microsoft geht man wiedermal ein wenig andere Wege als gewohnt und veröffentlicht nicht etwa ein Service Pack für die Silverlight Runtime sondern eine neue Version - Die Silverlight 2 GDR1 (General Distribution Release 1). </p>
<p>Die Installation unterscheidet sich je nach dem, ob man vorher das End-User-Plugin oder das Developer-Plugin installiert hatte. Hier die beiden Installationslinks:</p>
<ul>
<li><a href="http://www.microsoft.com/silverlight/resources/install.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.microsoft.com');">Silverlight 2 GDR1 -&gt; End-User Plugin</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=119972" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/go.microsoft.com');">Silverlight 2 GDR1 -&gt; Developer Plugin</a></li>
</ul>
<p>Tim Heuer hat in seinem Blog eine Liste der Haupt-Änderungen und Fixes veröffentlicht:</p>
<ul>
<li> Verschiedene Zugänglichkeit-Fixes (accessibility fixes) im Bezug auf UIAutomation</li>
<li> Fixes bezüglich mancher Anti-Virus Scanning Algorythmen</li>
<li> Fix für die OSX Plattform wen die Benutzer die Plazierung Ihrer Schriftarten ändern (z.B. Benutzer mit Font Management Tools)</li>
<li>Bugfix für den IsolatedStorage bei Sprachlokalisation in Sprachen, für die Silverlight nicht verfügbar ist.</li>
</ul>
<p>Wenn euch die Übersetzungen nicht gelungen erscheinen, schaut einfach im <a href="http://timheuer.com/blog/archive/2009/02/19/silverlight-2-gets-minor-update-gdr1.aspx" target="<br />
_blank">im Original-Post von Tim Heuer nach</a> ;o) Dort finden sich auch noch nährere Details zum Update der eigenen Applikationen auf die neue Version.</p>
]]></content:encoded>
			<wfw:commentRss>http://silverlightblog.saschabaumann.com/2009/02/update-der-silverlight-runtime-auf-gdr1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mike Snows &#x2018;Silverlight Tips of the Day&#x2019; #81 -#90</title>
		<link>http://silverlightblog.saschabaumann.com/2009/02/mike-snows-silverlight-tips-of-the-day-81-90/</link>
		<comments>http://silverlightblog.saschabaumann.com/2009/02/mike-snows-silverlight-tips-of-the-day-81-90/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 11:31:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://silverlightblog.saschabaumann.com/?p=42</guid>
		<description><![CDATA[Pünktlich zum erscheinen des 90ten Posts von Mike Snows Artikelserie &#8220;Silverlight Tips of the Day&#8221; habe ich hier mal die letzten 10 Posts zusammengestellt. Sehr lehrreich wie ich finde.

Silverlight Tip of the Day #90 – How to Edit your CSPROJ File from VS
Silverlight Tip of the Day #89 – How to use String Resources
Silverlight Tip [...]]]></description>
			<content:encoded><![CDATA[<p>Pünktlich zum erscheinen des 90ten Posts von Mike Snows Artikelserie &#8220;Silverlight Tips of the Day&#8221; habe ich hier mal die letzten 10 Posts zusammengestellt. Sehr lehrreich wie ich finde.</p>
<ul>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/02/06/silverlight-tip-of-the-day-90-how-to-edit-your-csproj-file-from-vs.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #90 – How to Edit your CSPROJ File from VS</a></li>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/01/27/silverlight-tip-of-the-day-89-how-to-use-string-resources.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #89 – How to use String Resources</a></li>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/01/27/silverlight-tip-of-the-day-88-how-to-handle-image-ag-e-network-error-errors.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #88 – How to handle image AG_E_NETWORK_ERROR errors</a></li>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/01/23/silverlight-tip-of-the-day-87-how-to-change-the-startup-class.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #87 – How to Change the Startup Class</a></li>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/01/22/silverlight-tip-of-the-day-86-how-to-load-external-images.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #86 – How to Load External Images</a></li>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/01/21/silverlight-tip-of-the-day-85-how-to-save-on-the-silverlight-mix-conference.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #85 – How to Save $$ on the Silverlight MIX Conference</a></li>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/01/21/silverlight-tip-of-the-day-84-how-to-dynamically-load-a-control-from-a-dll.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #84 – How to Dynamically Load a Control from a DLL</a></li>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/01/16/silverlight-tip-of-the-day-83-go-to-mix09.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #83 – Go to MIX09</a></li>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/01/15/silverlight-tip-of-the-day-82-how-to-implement-double-click.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #82 – How to Implement Double Click</a></li>
<li><a href="http://silverlight.net/blogs/msnow/archive/2009/01/13/silverlight-tip-of-the-day-81-how-to-scale-your-silverlight-control.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/silverlight.net');">Silverlight Tip of the Day #81 – How to Scale your Silverlight Control</a></li>
</ul>
<p><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://silverlightblog.saschabaumann.com/2009/02/mike-snows-silverlight-tips-of-the-day-81-90/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Controls für jede Lebenslage</title>
		<link>http://silverlightblog.saschabaumann.com/2009/02/controls-fur-jede-lebenslage/</link>
		<comments>http://silverlightblog.saschabaumann.com/2009/02/controls-fur-jede-lebenslage/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 15:28:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Controls]]></category>

		<category><![CDATA[List]]></category>

		<category><![CDATA[Tim Heuer]]></category>

		<guid isPermaLink="false">http://silverlightblog.saschabaumann.com/?p=30</guid>
		<description><![CDATA[Tim Heuer, Program Manager für Silverlight bei Microsoft, hat sich die Mühe gemacht und eine sehr große Liste mit derzeit verfügbaren Silverlight-Controls zusammengestellt. Bin zwar selbst noch nicht fertig mit durchsehen, möchte es euch aber auch nicht vorenthalten.
Liste von Tim Heuer
]]></description>
			<content:encoded><![CDATA[<p><a href="http://timheuer.com/blog/" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/timheuer.com');">Tim Heuer</a>, Program Manager für Silverlight bei Microsoft, hat sich die Mühe gemacht und eine sehr große Liste mit derzeit verfügbaren Silverlight-Controls zusammengestellt. Bin zwar selbst noch nicht fertig mit durchsehen, möchte es euch aber auch nicht vorenthalten.</p>
<p><a href="http://timheuer.com/blog/archive/2009/01/28/comprehensive-list-of-silverlight-controls.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/timheuer.com');">Liste von Tim Heuer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://silverlightblog.saschabaumann.com/2009/02/controls-fur-jede-lebenslage/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Kaxaml - der neue XAML Editor</title>
		<link>http://silverlightblog.saschabaumann.com/2009/02/kaxaml-der-neue-xaml-editor/</link>
		<comments>http://silverlightblog.saschabaumann.com/2009/02/kaxaml-der-neue-xaml-editor/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 15:17:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[XAML]]></category>

		<category><![CDATA[Kaxaml]]></category>

		<guid isPermaLink="false">http://silverlightblog.saschabaumann.com/?p=23</guid>
		<description><![CDATA[


Guten Tag,
das erste Posting in diesem neuen Blog beschäftigt sich kurz mit dem XAML-Editor Kaxaml.
Diesen Editor kann man sich unter kaxaml.com herunterladen.
Ich habe ihn selbst noch nicht getestet, und möchte deshalb erstmal auf einen Artikel von Otto Fischer verweisen, der sich schon ein wenig mehr damit auseinandergesetzt hat. Das Tool macht aber auf jeden Fall [...]]]></description>
			<content:encoded><![CDATA[<table width="100%">
<tr>
<td>
<p>Guten Tag,</p>
<p>das erste Posting in diesem neuen Blog beschäftigt sich kurz mit dem XAML-Editor Kaxaml.<br />
Diesen Editor kann man sich unter <a href="http://www.kaxaml.com/" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.kaxaml.com');">kaxaml.com</a> herunterladen.</p>
<p>Ich habe ihn selbst noch nicht getestet, und möchte deshalb erstmal auf einen Artikel von Otto Fischer verweisen, der sich schon ein wenig mehr damit auseinandergesetzt hat. Das Tool macht aber auf jeden Fall einen interessanten ersten Eindruck :o)</p>
<p><a href="http://blog.silverlight-city.de/post/2009/01/23/KaXaml-Silverlight-Xaml-Editor-das-bessere-XAML-Pad.aspx" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/blog.silverlight-city.de');">&#8216;KaXaml Silverlight Xaml-Editor, das bessere XAML-Pad&#8217;</a> von Otto Fischer</p>
</td>
<td>
<img style="float:left;" align="right" src="http://silverlightblog.saschabaumann.com/wp-content/uploads/2009/02/screenshot_kaxaml.png" alt="screenshot_kaxaml" title="screenshot_kaxaml" width="300" height="215"  />
</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://silverlightblog.saschabaumann.com/2009/02/kaxaml-der-neue-xaml-editor/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
