<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Infinity &#187; Silverlight</title>
	<atom:link href="http://blog.cyragon.com/category/silverlight/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cyragon.com</link>
	<description>where it all begins</description>
	<lastBuildDate>Fri, 11 Feb 2011 20:26:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>Our latest project: Live Election Results for 2010!</title>
		<link>http://blog.cyragon.com/2010/11/our-latest-project-live-election-results-for-2010/</link>
		<comments>http://blog.cyragon.com/2010/11/our-latest-project-live-election-results-for-2010/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 01:39:08 +0000</pubDate>
		<dc:creator>Ben Farmer</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Agile]]></category>
		<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Election 2010]]></category>
		<category><![CDATA[Live Election Results]]></category>

		<guid isPermaLink="false">http://blog.cyragon.com/?p=193</guid>
		<description><![CDATA[That&#8217;s right, our latest project turned into a pretty big effort; live election results for the entire US! We&#8217;re allowing you to customize which races you want to watch in real-time. The idea for this project started back in August of 2010 as a simple site to show some local live election results for one [...]]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s right, our latest project turned into a pretty big effort; <a href="http://liveelectionresults2010.com">live election results</a> for the entire US! We&#8217;re allowing you to customize which races you want to watch in real-time. </p>
<p>The idea for this project started back in August of 2010 as a simple site to show some local live election results for one county. It was a quick and simple application that worked really well. </p>
<p>In October, we started working on some improvements and decided to expand the scope of the results to cover all U.S. Senate, U.S. House races, and as many states as we could before November 2nd. Oh, and we redesigned the Silverlight UI and added a ton of functionality. </p>
<p>On top of that, the project now includes a mobile web version for the iPhone, Android, and Blackberry devices. And a custom Windows Phone 7 client application with some really advanced features. Not to mention a ton of new really smart high-availability back-end data services.  </p>
<p>So, yeah, lots of work and not much sleep. But it&#8217;s really awesome and we&#8217;re very happy with it. Check it out: <a href="http://liveelectionresults2010.com">Live Election Results for November 2nd 2010</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cyragon.com/2010/11/our-latest-project-live-election-results-for-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coping contents of Template Column in data grid to clipboard</title>
		<link>http://blog.cyragon.com/2010/08/coping-contents-of-template-column-in-data-grid-to-clipboard/</link>
		<comments>http://blog.cyragon.com/2010/08/coping-contents-of-template-column-in-data-grid-to-clipboard/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 21:12:25 +0000</pubDate>
		<dc:creator>Ben Farmer</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://blog.cyragon.com/?p=187</guid>
		<description><![CDATA[There are some nice new features (coming from Silverlight 2) in the latest versions of Silverlight &#8211; being able to copy rows in a DataGrid via the familiar Control+C for instance. But I noticed something strange: some columns were blank when I pasted them into Excel (or notepad). The blank columns were always DataGridTemplateColumn and [...]]]></description>
			<content:encoded><![CDATA[<p>There are some nice new features (coming from Silverlight 2) in the latest versions of Silverlight &#8211; being able to copy rows in a DataGrid via the familiar Control+C for instance. </p>
<p>But I noticed something strange: some columns were blank when I pasted them into Excel (or notepad). The blank columns were always DataGridTemplateColumn and that made sense. How could it know what to copy from one or more controls? </p>
<p>Turns out this is really easy to fix if you are using data binding. All you have to do is bind the ClipboardContentBinding property on the DataGridTemplateColumn with the value you want copied for this column.</p>
<p>For example:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p187code2'); return false;">View Code</a> XML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p1872"><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code" id="p187code2"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;data:DataGridTemplateColumn</span> <span style="color: #000066;">Header</span>=<span style="color: #ff0000;">&quot;Name&quot;</span> <span style="color: #000066;">ClipboardContentBinding</span>=<span style="color: #ff0000;">&quot;{Binding Name}&quot;</span> <span style="color: #000066;">SortMemberPath</span>=<span style="color: #ff0000;">&quot;Name&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;data:DataGridTemplateColumn.CellTemplate<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
     <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;DataTemplate<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;HyperlinkButton</span> <span style="color: #000066;">Content</span>=<span style="color: #ff0000;">&quot;{Binding Name}&quot;</span> <span style="color: #000066;">Margin</span>=<span style="color: #ff0000;">&quot;3&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
     <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/DataTemplate<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/data:DataGridTemplateColumn.CellTemplate<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/data:DataGridTemplateColumn<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>And that&#8217;s it. Control+C copy works as desired.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cyragon.com/2010/08/coping-contents-of-template-column-in-data-grid-to-clipboard/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Strategic Command Featured on Silverlight.net!</title>
		<link>http://blog.cyragon.com/2009/08/strategic-command-featured-on-silverlight-net/</link>
		<comments>http://blog.cyragon.com/2009/08/strategic-command-featured-on-silverlight-net/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 20:34:21 +0000</pubDate>
		<dc:creator>Ben Farmer</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Stategic Command]]></category>

		<guid isPermaLink="false">http://blog.cyragon.com/?p=110</guid>
		<description><![CDATA[Strategic Command, the popular Silverlight game, has been added to the Silverlight showcase on the official Microsoft Silverlight site, Silverlight.net. Check it out under Casual Games at: http://silverlight.net/Showcase/]]></description>
			<content:encoded><![CDATA[<p>Strategic Command, the popular Silverlight game, has been added to the Silverlight showcase on the official Microsoft Silverlight site, Silverlight.net.</p>
<p>Check it out under Casual Games at: <a title="Microsoft Silverlight: Showcase" href="http://silverlight.net/Showcase/">http://silverlight.net/Showcase/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cyragon.com/2009/08/strategic-command-featured-on-silverlight-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cyragon Games releases their latest hit: Strategic Command!</title>
		<link>http://blog.cyragon.com/2009/04/cyragon-games-releases-their-latest-hit-strategic-command/</link>
		<comments>http://blog.cyragon.com/2009/04/cyragon-games-releases-their-latest-hit-strategic-command/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 02:44:37 +0000</pubDate>
		<dc:creator>Ben Farmer</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[StrategicCommand]]></category>

		<guid isPermaLink="false">http://blog.cyragon.com/?p=96</guid>
		<description><![CDATA[Even though it appears that I&#8217;ve fallen off the end of the earth, it&#8217;s not true. For the last 45 days, I have been at the top-secret Cyragon Games headquarters working on their latest hit game. Thatâ€™s right, Strategic Command! Two armies. One battlefield. One victor. Will it be you? Use strategy and deception to [...]]]></description>
			<content:encoded><![CDATA[<p>Even though it appears that I&#8217;ve fallen off the end of the earth, it&#8217;s not true. For the last 45 days, I have been at the top-secret Cyragon Games headquarters working on their latest hit game. </p>
<p><center><div id="attachment_97" class="wp-caption alignnone" style="width: 310px"><img src="http://blog.cyragon.com/wp-content/uploads/2009/04/strategiccommandtitle-300x45.jpg" alt="Title from the game Strategic Command" title="Strategic Command Title" width="300" height="45" class="size-medium wp-image-97" /><p class="wp-caption-text">Title from the game Strategic Command</p></div></center></p>
<p>Thatâ€™s right, Strategic Command! </p>
<blockquote><p>Two armies. One battlefield. One victor. Will it be you?</p>
<p>Use strategy and deception to maneuver your armed forces into your opponent&#8217;s territory and conquer their headquarters. The winner will be crowned with glory and live to see their name thunder down the hallowed corridors of time. The loser will be buried in infamy.</p>
<p>The fate of the war is in your hands. What will you do, commander?</p></blockquote>
<p>This will be our entry in the <a href="http://www.serverquestcontest.com/">Silverlight Server Quest Game Contest</a>. </p>
<p><center><div id="attachment_98" class="wp-caption alignnone" style="width: 210px"><img src="http://blog.cyragon.com/wp-content/uploads/2009/04/screenshot.jpg" alt="Strategic Command Screenshot" title="Screenshot from Strategic Command game" width="200" height="150" class="size-full wp-image-98" /><p class="wp-caption-text">Strategic Command Screenshot</p></div></center></p>
<p>Weâ€™re planning to do a postmortem on the game and make some other exciting announcements so check back soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cyragon.com/2009/04/cyragon-games-releases-their-latest-hit-strategic-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What you need to develop Silverlight for FREE</title>
		<link>http://blog.cyragon.com/2008/12/what-you-need-to-develop-silverlight-for-free/</link>
		<comments>http://blog.cyragon.com/2008/12/what-you-need-to-develop-silverlight-for-free/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 17:01:13 +0000</pubDate>
		<dc:creator>Ben Farmer</dc:creator>
				<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Blender]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[XAML]]></category>

		<guid isPermaLink="false">http://blog.cyragon.com/?p=82</guid>
		<description><![CDATA[#1 Visual Studio Express 2008 with SP1 www.microsoft.com/express/download/ You can download an ISO with all the express editions or just the Web Developer edition. The only one you need is Visual Studio Web Developer 2008 SP1. If you don&#8217;t have SP1 for Visual Studio 2008, get it here: www.microsoft.com/downloads/details.aspx?FamilyId=FBEE1648-7106-44A7-9649-6D9F6D58056E #2 Silverlight Tools for Visual Studio [...]]]></description>
			<content:encoded><![CDATA[<h2>#1 Visual Studio Express 2008 with SP1</h2>
<p><a href="http://www.microsoft.com/express/download/">www.microsoft.com/express/download/</a><br />
You can download an ISO with all the express editions or just the Web Developer edition. The only one you <strong>need</strong> is Visual Studio Web Developer 2008 SP1.</p>
<p>If you don&#8217;t have SP1 for Visual Studio 2008, get it here:<br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=FBEE1648-7106-44A7-9649-6D9F6D58056E">www.microsoft.com/downloads/details.aspx?FamilyId=FBEE1648-7106-44A7-9649-6D9F6D58056E</a></p>
<h2>#2 Silverlight Tools for Visual Studio 2008 SP1</h2>
<p>Download the tools for developing applications of awesomeness here:<br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=c22d6a7b-546f-4407-8ef6-d60c8ee221ed&#038;displaylang=en">www.microsoft.com/downloads/details.aspx?FamilyId=c22d6a7b-546f-4407-8ef6-d60c8ee221ed&#038;displaylang=en</a>.<br />
If you want some offline documentation, you can download that here:<br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=bce7684a-507b-4fc6-bc99-6933cd690cab&#038;displaylang=en">www.microsoft.com/downloads/details.aspx?FamilyID=bce7684a-507b-4fc6-bc99-6933cd690cab&#038;displaylang=en</a>.</p>
<h5>Optional: Expression Blend 2 Trial</h5>
<p>This isn&#8217;t a requirement but it will give you a good place to start if you&#8217;ve never played with XAML. Download it here:<br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=5FF08106-B9F4-43CD-ABAD-4CC9D9C208D7&#038;displaylang=en">www.microsoft.com/downloads/details.aspx?FamilyId=5FF08106-B9F4-43CD-ABAD-4CC9D9C208D7&#038;displaylang=en</a><br />
and don&#8217;t forget Blend SP1<br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=EB9B5C48-BA2B-4C39-A1C3-135C60BBBE66&#038;displaylang=en ">www.microsoft.com/downloads/details.aspx?FamilyId=EB9B5C48-BA2B-4C39-A1C3-135C60BBBE66&#038;displaylang=en</a><br />
or Expression Studio 2 Trial here:<br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=7AE2720C-72BA-489B-ADBB-EE6F3C79066D&#038;displaylang=en">www.microsoft.com/downloads/details.aspx?FamilyId=7AE2720C-72BA-489B-ADBB-EE6F3C79066D&#038;displaylang=en</a></p>
<h5>Optional: Deep Zoom composer</h5>
<p>Needed if you want to develop deep zoom applications:<br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=457B17B7-52BF-4BDA-87A3-FA8A4673F8BF&#038;displaylang=en">www.microsoft.com/downloads/details.aspx?FamilyID=457B17B7-52BF-4BDA-87A3-FA8A4673F8BF&#038;displaylang=en</a></p>
<h5>Optional: Silverlight Toolkit from Codeplex</h5>
<p>Nice set of components from the community for you to use or extend in your Sliverlight applications. Download it here:<br />
<a href="http://www.codeplex.com/Silverlight/Release/ProjectReleases.aspx">www.codeplex.com/Silverlight/Release/ProjectReleases.aspx</a></p>
<h5>Other Options</h5>
<p>If you want to go hardcore, check out this article on developing Silverlight applications in Eclipse: <a href="http://www.eclipse4sl.org/download/">www.eclipse4sl.org/download/</a>. </p>
<p>If you use <a href="http://www.blender.org/">Blender</a>, the free open source 3D content creation suite, you might want to check out this XAML exporter. Not that it will fully work for Silverlight (it&#8217;s really for WPF). But it&#8217;s still pretty cool: <a href="http://www.codeplex.com/xamlexporter">www.codeplex.com/xamlexporter</a></p>
<p>That&#8217;s it! Go forth and develop!</p>
<p>Don&#8217;t forget to check out <a href="http://silverlight.net/">silverlight.net</a> for videos, blogs, and forums. More resources: <a href="http://www.microsoft.com/silverlight/resources/tools.aspx">http://www.microsoft.com/silverlight/resources/tools.aspx</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cyragon.com/2008/12/what-you-need-to-develop-silverlight-for-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
