<?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>Michael Sync &#187; Silverlight</title>
	<atom:link href="http://michaelsync.net/category/silverlight/feed" rel="self" type="application/rss+xml" />
	<link>http://michaelsync.net</link>
	<description>Sharing our knowledge</description>
	<lastBuildDate>Thu, 05 Apr 2012 07:37:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Silverlight User Group Meetup &#8211; Jan 2012</title>
		<link>http://michaelsync.net/2012/01/09/silverlight-user-group-meetup-jan-2012</link>
		<comments>http://michaelsync.net/2012/01/09/silverlight-user-group-meetup-jan-2012#comments</comments>
		<pubDate>Tue, 10 Jan 2012 01:50:57 +0000</pubDate>
		<dc:creator>Michael Sync</dc:creator>
				<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://michaelsync.net/?p=2131</guid>
		<description><![CDATA[Title: How to develop and deploy Silverlight using WCF RIA services on Windows Azure Synopsis: Windows Azure is a cloud based service which supports Silverlight WCF RIA services. This topic discuss about how to develop a simple application using WCF...]]></description>
			<content:encoded><![CDATA[<div><strong><br />
</strong></div>
<ul>
<li><strong>Title</strong>: How to develop and deploy Silverlight using WCF RIA services on Windows Azure</li>
<li><strong>Synopsis</strong>: Windows Azure is a cloud based service which supports Silverlight WCF RIA services. This topic discuss about how to develop a simple application using WCF RIA service. Later the application will be deployed to the Windows Azure for accessing it over internet. We also discuss on basic featured of Azure services.</li>
<li><strong>Speaker</strong>: Senthamil Selvan</li>
<li><strong>Date and Time</strong>: 12th January, 2012 ( 7:30 PM to 9:30 PM )</li>
<li><strong>Location</strong>: Microsoft Singapore, Conf Room SINOMB 22CF-12 (60) VTC</li>
<li><strong>Admission</strong>: Free</li>
</ul>
<p><img class="size-full wp-image-2132 aligncenter" title="7217.Windows-Azure-logo-v_6556EF52" src="http://michaelsync.net/wp-content/uploads/2012/01/7217.Windows-Azure-logo-v_6556EF52.png" alt="" width="205" height="99" />
<div class='kouguu_fb_like_button'><iframe src="http://www.facebook.com/plugins/like.php?href=http://michaelsync.net/2012/01/09/silverlight-user-group-meetup-jan-2012&#038;layout=standard&#038;show_faces=false&#038;width=450&#038;height=25&#038;action=like&#038;colorscheme=light&#038;" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:25px;"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://michaelsync.net/2012/01/09/silverlight-user-group-meetup-jan-2012/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Silverlight 5: MVVM got more fun with Implicit Data Templates</title>
		<link>http://michaelsync.net/2011/12/22/silverlight-5-mvvm-got-more-fun-with-implicit-data-templates</link>
		<comments>http://michaelsync.net/2011/12/22/silverlight-5-mvvm-got-more-fun-with-implicit-data-templates#comments</comments>
		<pubDate>Thu, 22 Dec 2011 17:18:37 +0000</pubDate>
		<dc:creator>Michael Sync</dc:creator>
				<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://michaelsync.net/?p=1920</guid>
		<description><![CDATA[A few years back, Julian Dominguez from Microsoft pattern and practice team proposed a solution that uses Implicit Data Teamplate for WPF MVVM application development. You can read the details in his blog post &#8220;Presentation Model with DataTemplates in CompositeWPF (Prism)...]]></description>
			<content:encoded><![CDATA[<p>A few years back, Julian Dominguez from Microsoft pattern and practice team proposed a solution that uses Implicit Data Teamplate for WPF MVVM application development. You can read the details in his blog post &#8220;<a href="http://blogs.southworks.net/jdominguez/2008/09/presentation-model-with-datatemplates-in-compositewpf-prism-sample/">Presentation Model with DataTemplates in CompositeWPF (Prism) Sample</a>&#8220;.  I was working in Xuenn developing WPF applications for sport betting platform at that time and we introduced Julian&#8217;s approach to team. We found both advantages and disadvantages of using this approach (I will share with you all the details soon.) but using &#8220;Implicit data template&#8221; did help a lot for some scenarios.  I&#8217;ve been requesting this feature to the team again and again for last a couple of years and I&#8217;m really glad that Silverlight team added it in Silverlight 5.</p>
<h2>What is Implicit Data Template?</h2>
<p>Implicit data template is something similar to &#8220;Implicit style&#8221; that was introduced in Silverlight 4. When you define a data template in &lt;*.Resources&gt; or resource dictionary, you used to define the key over there and reference it from the place where you want to use that data template. With implicit data template, you don&#8217;t need to define any key for your data template. There is a new property called &#8220;DataType&#8221; where you can define the type of data (Model) in data template that you want to use.</p>
<p>The code will be something like that below ~</p>
<pre class="brush: xml; title: ; notranslate">

&lt;DataTemplate DataType=&quot;local:MyAwesomeModel&quot;&gt;
....
&lt;/DataTemplate&gt;
</pre>
<p>In this example, our model is called &#8220;MyAwesomeModel&#8221; and we set it to the &#8220;DataType&#8221; property of data template. Of course, you can create any template you want inside that data template as usual. After that, you can directly bind this model with UI (e.g. ContentControl or ItemControl ). The template that you created will be displayed on the UI when you run the project. How simple it is?</p>
<p>In order to show this feature, I created one demo with metro design in my mind (even thought I&#8217;m not professional designer. )</p>
<p><strong>Download</strong> :  <a href="https://github.com/michaelsync/Michael-Sync-s-blog-sample/tree/master/ImplicitDataTemplatesDemo">ImplicitDataTemplatesDemo</a> from github</p>
<p><img class="alignnone size-full wp-image-2057" title="Silverlight 5 Implicit Data Template" src="http://michaelsync.net/wp-content/uploads/2011/12/Silverlight-5-Implicit-Data-Template.png" alt="" width="594" height="627" /></p>
<p>What I did in this sample is pretty simple. I created an interface called &#8220;IPerson&#8221; which has three properties such as Name, Description, ProfilePhoto. And, I created three models (MichaelSync, ElenaSync and ShwesinSync) that implement &#8220;IPerson&#8221; interface. Note that I didn&#8217;t implement INotifyPropertyChanged or the setter in any of the classes but you may want to implement them in real project.</p>
<pre class="brush: csharp; title: ; notranslate">

public interface IPerson {
 string Name { get; }
 string Description { get; }
 BitmapImage ProfilePhoto { get; }
}
</pre>
<p>In MainPage, I set the DataContext in order to make the bindng work. Yap! I have to set it before initializing the components. I added new property called &#8220;People&#8221; and filled it up with the instances of models.</p>
<pre class="brush: csharp; title: ; notranslate">

public partial class MainPage : UserControl
{
 public MainPage()
 {
 this.DataContext = this;
 // Required to initialize variables
 InitializeComponent();

People = new List{
new MichaelSync(),
new ElenaSync(),
new ShwesinSync(),
 };
 }

public IList People { get; set; }
}
</pre>
<p>There is only one ItemControl that bind to &#8220;People&#8221; property.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;Grid Width=&quot;640&quot; HorizontalAlignment=&quot;Left&quot;&gt;
 &lt;ItemsControl ItemsSource=&quot;{Binding People}&quot; Margin=&quot;41,84,41,0&quot;/&gt;
&lt;/Grid&gt;
</pre>
<p>I created three data templates with different data type as below.</p>
<p><img class="alignnone size-full wp-image-2060" title="Silverlight 5 Implicit Data Template XAML" src="http://michaelsync.net/wp-content/uploads/2011/12/Silverlight-5-Implicit-Data-Template-XAML.png" alt="" width="612" height="256" /></p>
<p>When you run it, you will see beautiful metro style application with my family photos. I&#8217;m just trying to show you one scenario that you can use but if you really want to use MVVM with implicit data template, I would recommend you to read Julian&#8217;s post.</p>
<h2>Pros and Cons of using Implicit DataTemplate in MVVM</h2>
<p>I would say that Julian&#8217;s approach is kinda extreme MVVM approach because it limited you from having any code behind code in View but it does help you more code cleaner (Oh no! I&#8217;m not counting code. )  and force developers to use MVVM in proper way (like creating blend bahivors or attached properties or etc). Another good thing is that you can directly bind your model with UI without explicitly calling the views.</p>
<p><strong>Good</strong></p>
<ul>
<li>Cleaner and encourage the proper way of doing things</li>
<li>Easier binding</li>
</ul>
<p><strong>Bad</strong></p>
<ul>
<li>sometimes, it makes developers&#8217; life damn difficult.</li>
</ul>
<p>That&#8217;s all from my side.</p>
<p>Happy Silverlighting!
<div class='kouguu_fb_like_button'><iframe src="http://www.facebook.com/plugins/like.php?href=http://michaelsync.net/2011/12/22/silverlight-5-mvvm-got-more-fun-with-implicit-data-templates&#038;layout=standard&#038;show_faces=false&#038;width=450&#038;height=25&#038;action=like&#038;colorscheme=light&#038;" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:25px;"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://michaelsync.net/2011/12/22/silverlight-5-mvvm-got-more-fun-with-implicit-data-templates/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Silverlight 5 for Christmas</title>
		<link>http://michaelsync.net/2011/12/17/silverlight-5-for-christmas</link>
		<comments>http://michaelsync.net/2011/12/17/silverlight-5-for-christmas#comments</comments>
		<pubDate>Sat, 17 Dec 2011 10:32:15 +0000</pubDate>
		<dc:creator>Michael Sync</dc:creator>
				<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://michaelsync.net/?p=1979</guid>
		<description><![CDATA[The release of Silverlight 5 is announced on Silverlight team blog a few days back. You can go and download it from this link. I&#8217;m very glad that Silverlight team managed to add some features that we requested. Thanks Silverlight team!...]]></description>
			<content:encoded><![CDATA[<p>The release of Silverlight 5 is announced on <a href="http://blogs.msdn.com/b/silverlight/archive/2011/12/09/silverlight-5-available-for-download-today.aspx">Silverlight team blog</a> a few days back. You can go and download it from <a href="http://www.silverlight.net/downloads">this link</a>. I&#8217;m very glad that Silverlight team managed to add some features that we requested. Thanks Silverlight team!</p>
<p>One interesting thing that I noticed is that SL team put a link to <strong><a href="http://support.microsoft.com/gp/lifean45">Microsoft Silverlight Support Lifecycle Policy</a></strong> in the announcement post. I&#8217;m happy to know that they are still going to ship updates for Silverlight 5 in future and they promised that SL5 will work on <a href="http://go.microsoft.com/fwlink/?LinkId=236043">those browsers</a> until 10/12/2021.</p>
<p>Here is the list of features shipped with Silverlight 5. It&#8217;s just a copy and paste from &#8220;<a href="http://i1.silverlight.net/content/downloads/SL5Final_RTW.docx">What&#8217;s new in Silverlight 5</a>&#8221; document.</p>
<h2>Improved media support</h2>
<ul>
<li>Low Latency Audio Playback: Use the SoundEffect API to trigger low-latency sound</li>
<li>Variable Speed Playback: allows video to be played at different speeds and supports fast-forward and rewind. At up to twice the speed, audio pitch correction allows users to watch videos while preserving a normal audio pitch.</li>
<li>H/W Decode of H.264 media: Significant performance improvements with H.264 media decoding of unprotected content</li>
<li>DRM Key Rotation/LiveTV Playback: Long-running live TV playback protected through the use of rotating licenses</li>
<li>Application-Restricted Media: Prevents playback of protected content in unauthorized applications</li>
</ul>
<h2>Improved Text support</h2>
<ul>
<li>Text Tracking &amp; Leading: Exercise fine-grained control over the spacing between characters and lines in your text</li>
<li>Linked Text Containers: Create linked RichTextBlocks that allow text to flow seamlessly from one to the next</li>
<li>OpenType and Pixel Snapped Text : Improved text clarity</li>
<li>Postscript vector printing: reduces the size of print jobs and improves rendering quality of text</li>
<li>Performance improvements for Block Layout Engine.</li>
</ul>
<h2>Building next-generation business applications</h2>
<ul>
<li>PivotViewer &#8212; now included in SDK. Adds support for dynamic client-based collections, XAML-based visuals, and customizability.</li>
<li>ClickCount: Add support for multi-click to your application</li>
<li>Listbox/ComboBox type-ahead text searching: Listboxes and ComboBoxes can now scroll based on text input</li>
<li>Ancestor RelativeSource Binding: Bind to a property on a parent control</li>
<li>Implicit DataTemplates: Allow DataTemplates to be defined implicitly</li>
<li>DataContextChanged event</li>
<li>Added PropertyChanged to the UpdateSourceTrigger enum</li>
<li>Save File and Open File Dialog: Specify a default filename when you launch your SaveFileDialog and specify a default directory when you launch your OpenFileDialog</li>
<li>Databinding Debugging: Set a breakpoint directly in XAML, examine locals, and debug your bindings</li>
<li>Custom Markup Extensions: Execute custom code at XAML parse time</li>
<li>Binding on Style Setters: You can now specify a binding within a style</li>
</ul>
<h2>Silverlight 5 performance improvements</h2>
<ul>
<li>Parser Performance Improvements: Improved XAML parse times for UserControls &amp; ResourceDictionaries</li>
<li>Network Latency Improvements: Significant performance improvement in ClientHttpWebRequest scenarios</li>
<li>H/W accelerated rendering in IE9 windowless mode: Silverlight now uses the new SurfacePresenter APIs for H/W accelerated rendering in IE9 windowless mode</li>
<li>Multicore JIT: Shortens the start-up time for Silverlight apps</li>
<li>64-bit browser support</li>
</ul>
<h2>Graphics improvements</h2>
<ul>
<li>Improved Graphics stack: The graphics stack has been re-architected to add features such as Independent Animations</li>
<li>3D: Use the XNA API on the Windows platform to gain low-level access to the GPU and draw vertex shaders and low-level 3D primitives. Includes Render targets, XNA built-in effects, surface composition settings for depth/stencil buffers and multi-sample anti-aliasing</li>
</ul>
<h2>Silverlight 5 extends features of the &#8220;Trusted Application&#8221; model</h2>
<p>Silverlight 5 extends features of the ‘Trusted Application’ model to the browser for the first time. These features, when enabled via a group policy registry key and an application certificate, mean users won’t need to leave the browser to perform complex tasks:</p>
<ul>
<li>Multiple window support: Launch multiple top-level windows inside a SL OOB application</li>
<li>Full-Trust in-browser: Using Group Policy, deploy signed in-browser applications that harness the full power of full-trust functionality</li>
<li>In-browser HTML support: Host your WebOC within an in-browser SL application</li>
<li>Unrestricted File System Access: Read from and write to any directory on your system, from a full-trust application</li>
<li>P/Invoke support : Allows existing native code to be run directly from Silverlight</li>
</ul>
<h2>Tools improvements</h2>
<ul>
<li>Visual Studio Team Test support.</li>
</ul>
<div class='kouguu_fb_like_button'><iframe src="http://www.facebook.com/plugins/like.php?href=http://michaelsync.net/2011/12/17/silverlight-5-for-christmas&#038;layout=standard&#038;show_faces=false&#038;width=450&#038;height=25&#038;action=like&#038;colorscheme=light&#038;" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:25px;"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://michaelsync.net/2011/12/17/silverlight-5-for-christmas/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>X-Calibre Hackathon &#8211; Win Nokia Lumia devices, and $7K USD worth of cash prizes.</title>
		<link>http://michaelsync.net/2011/11/15/x-calibre-hackathon-win-nokia-lumia-devices-and-7k-usd-worth-of-cash-prizes</link>
		<comments>http://michaelsync.net/2011/11/15/x-calibre-hackathon-win-nokia-lumia-devices-and-7k-usd-worth-of-cash-prizes#comments</comments>
		<pubDate>Tue, 15 Nov 2011 15:29:08 +0000</pubDate>
		<dc:creator>Michael Sync</dc:creator>
				<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Windows Phone]]></category>

		<guid isPermaLink="false">http://michaelsync.net/?p=1916</guid>
		<description><![CDATA[My friend &#8220;Chris Ismal&#8221; from Nokia posted about the event that he and his team are organizing in our Singapore Silverlight Facebook page. This event is called &#8220; X-Calibre Hackathon&#8221;. It&#8217;s a full day event that developers come and build the...]]></description>
			<content:encoded><![CDATA[<p>My friend &#8220;Chris Ismal&#8221; from Nokia posted about the event that he and his team are organizing in our <a href="https://www.facebook.com/groups/292655079571/10150546261524572/">Singapore Silverlight Facebook page</a>. This event is called &#8220; X-Calibre Hackathon&#8221;. It&#8217;s a full day event that developers come and build the application for Windows Phone by using latest Windows Phone 7.5 (mango) features.</p>
<p><img class="alignnone size-full wp-image-1917" title="X-Calibre Hackathon" src="http://michaelsync.net/wp-content/uploads/2011/11/X-Calibre-Hackathon.png" alt="" width="350" height="331" /></p>
<p>You can read the details on <a href="http://wp7sg.community.officelive.com/XCalibreHackathon.aspx">their official website</a>. I copied and pasted some informations for you here as well.</p>
<p>Winners will ride away with a trophy unlike any other, and Nokia Lumia devices to the 1st prize winning team, and&#8230;</p>
<ul>
<li><strong>1st prize -$4,000 USD</strong></li>
<li><strong>2nd prize &#8211; $2,000 USD</strong></li>
<li><strong>3rd prize &#8211; $1,000 USD</strong></li>
</ul>
<p>The winning apps will also be featured in Nokia&#8217;s App Highlights and Amazing Everyday Marketing Campaign!</p>
<p><strong>What is X-Calibre Hackathon?</strong></p>
<p>X-Calibre Hackathon is a one-day Windows Phone application building contest (9am &#8211; 6pm) happening on November 19, 2011 where developers compete to create the best WP app using Mango features such as  Metro UI, Live Tiles, Fast App Switching etc.</p>
<p><strong>What is the judging criteria? </strong></p>
<p>Judging will be done by representatives from Nokia, Microsoft, and the WP Champs.  There will be no criteria weightage.  Judging will simply be based on &#8220;the best Windows Phone app that uses Mango features such as Metro UI, Live Tiles, Fast App Switching, and others!&#8221;</p>
<p><strong>What are the contest details?</strong></p>
<ol>
<li>The chosen 60 participants will be divided into 4 groups each stationed at different locations.  Groups will compose of teams with maximum 3 members each team.  In total there will be 20 teams.</li>
<li>Two Windows Phone Champs will be managing and providing technical support to each of the groups.  In total there will be 8 Champs.</li>
<li>The contest will commence at 9:00 am simultaneously throughout the locations.  The Champs will be on-location until 6pm.  Venue is only available until 6:00 pm.  Contest (submission) ends 11:59 pm on the same day.</li>
<li>Bring your own laptop, wifi, and food!5. Contest winners will be announced at the Awarding event in Nokia Singapore (date to be confirmed)</li>
</ol>
<div class='kouguu_fb_like_button'><iframe src="http://www.facebook.com/plugins/like.php?href=http://michaelsync.net/2011/11/15/x-calibre-hackathon-win-nokia-lumia-devices-and-7k-usd-worth-of-cash-prizes&#038;layout=standard&#038;show_faces=false&#038;width=450&#038;height=25&#038;action=like&#038;colorscheme=light&#038;" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:25px;"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://michaelsync.net/2011/11/15/x-calibre-hackathon-win-nokia-lumia-devices-and-7k-usd-worth-of-cash-prizes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blend 4 + VS 2011 (Preview) = Problem?</title>
		<link>http://michaelsync.net/2011/11/15/blend-4-vs-2011-preview-problem</link>
		<comments>http://michaelsync.net/2011/11/15/blend-4-vs-2011-preview-problem#comments</comments>
		<pubDate>Tue, 15 Nov 2011 14:18:38 +0000</pubDate>
		<dc:creator>Michael Sync</dc:creator>
				<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://michaelsync.net/?p=1910</guid>
		<description><![CDATA[Problem:  Microsoft Expression Blend 4 crash on startup after installing Visual Studio 2011 Developer Preview on my machine.. Solution:  I found this bug report in MS Connect.  Christopher Cole from Microsoft Expression responded that report with the solution below. There is a compatibility...]]></description>
			<content:encoded><![CDATA[<p><strong>Problem: </strong></p>
<p>Microsoft Expression Blend 4 crash on startup after installing Visual Studio 2011 Developer Preview on my machine..</p>
<p><img class="alignnone size-full wp-image-1911" title="Blend got fucked up after installing VS 11" src="http://michaelsync.net/wp-content/uploads/2011/11/Blend-got-fucked-up-after-installing-VS-11.png" alt="" width="414" height="538" /></p>
<p><strong>Solution: </strong></p>
<p>I found this bug report in <a href="http://connect.microsoft.com/Expression/feedback/details/690246/blend-4-crashes-on-startup">MS Connect</a>.  Christopher Cole from Microsoft Expression responded that report with the solution below.</p>
<blockquote><p>There is a compatibility problem with .Net 4.5 installed as part of the Developer Preview and Blend 4. This issue was fixed, but too late to make the preview build.</p>
<p>The workaround is to run:</p>
<p>%windir%\Microsoft.NET\Framework\v4.0.30319\ngen uninstall &#8220;%ProgramFiles(x86)%\Microsoft Expression\Blend 4\Microsoft.Expression.Framework.dll&#8221;<br />
%windir%\Microsoft.NET\Framework\v4.0.30319\ngen uninstall &#8220;%ProgramFiles(x86)%\Microsoft Expression\Blend 4\Microsoft.Expression.Blend.dll&#8221;<br />
%windir%\Microsoft.NET\Framework\v4.0.30319\ngen uninstall &#8220;%ProgramFiles(x86)%\Microsoft Expression\Blend 4\Microsoft.Expression.Project.dll&#8221;</p>
<p>If &#8220;%ProgramFiles(x86)%\Microsoft Expression\Blend 4\Microsoft.Expression.WindowsPhone.dll&#8221; is present (for scenarios like Blend V4 SP1 or future releases), please also run:<br />
%windir%\Microsoft.NET\Framework\v4.0.30319\ngen uninstall &#8220;%ProgramFiles(x86)%\Microsoft Expression\Blend 4\Microsoft.Expression.WindowsPhone.dll&#8221;</p></blockquote>
<p>I just tried it on my machine and it works for me so I&#8217;m sharing it with my readers here..</p>
<p><img class="alignnone size-full wp-image-1912" title="Blend Fixes" src="http://michaelsync.net/wp-content/uploads/2011/11/Blend-Fixes.png" alt="" width="677" height="485" /></p>
<p><strong>Edit: </strong></p>
<blockquote><p>Error: Unrecognized option Files</p></blockquote>
<p>You have integrated Git with Command Prompt, you will get this error when you run &#8220;ngen&#8221;. If you happen to have the older preview version of git, you will get the error below when you try to uninstall it. I had to delete the git folder manually.</p>
<blockquote><p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Error<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Runtime Error (at 18:1292):</p>
<p>Could not call proc.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
OK<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p></blockquote>
<p><img class="alignnone size-full wp-image-2067" title="git can't uninstalled" src="http://michaelsync.net/wp-content/uploads/2011/11/git-cant-uninstalled.png" alt="" width="557" height="412" /></p>
<p>&nbsp;</p>
<p>&nbsp;
<div class='kouguu_fb_like_button'><iframe src="http://www.facebook.com/plugins/like.php?href=http://michaelsync.net/2011/11/15/blend-4-vs-2011-preview-problem&#038;layout=standard&#038;show_faces=false&#038;width=450&#038;height=25&#038;action=like&#038;colorscheme=light&#038;" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:25px;"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://michaelsync.net/2011/11/15/blend-4-vs-2011-preview-problem/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Singapore Silverlight User Group – June 2011 Meetup</title>
		<link>http://michaelsync.net/2011/11/04/singapore-silverlight-user-group-june-2011-meetup</link>
		<comments>http://michaelsync.net/2011/11/04/singapore-silverlight-user-group-june-2011-meetup#comments</comments>
		<pubDate>Fri, 04 Nov 2011 14:26:00 +0000</pubDate>
		<dc:creator>Michael Sync</dc:creator>
				<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://michaelsync.net/?p=2116</guid>
		<description><![CDATA[Guys! It has been a while since we had our group meetup in Nov. So I think it’s time for us to meet up again..:)  As you all know, Microsoft released Silverlight 5 Beta and demonstrated about Windows Phone 7...]]></description>
			<content:encoded><![CDATA[<p>Guys! It has been a while since we had our group meetup in Nov. So I think it’s time for us to meet up again..:)  As you all know, Microsoft released Silverlight 5 Beta and demonstrated about Windows Phone 7 “Mango”  update recently.. I’m sure that you guys might have a lot of questions about this update.. That’s why we invited Chris from Microsoft to give a talk about WP7 mango update in our group meetup. Please feel free to come and you can bring your friends as well. See you all!!</p>
<ul>
<li><strong>Topic</strong> : <strong>Windows Phone 7 “Mango” Update</strong></li>
<li><strong>Speaker</strong> : Chris Ismael (Microsoft)</li>
<li>Date: 28th June, 2010</li>
<li><strong>Time</strong>: 7 PM – 10 PM</li>
<li><strong>Location</strong>: Microsoft (22CF-12)</li>
</ul>
<p><img class="alignnone size-full wp-image-2117" title="windows-phone-7-mango-update-microsoft" src="http://michaelsync.net/wp-content/uploads/2012/01/windows-phone-7-mango-update-microsoft.jpg" alt="" width="320" height="257" /></p>
<div class='kouguu_fb_like_button'><iframe src="http://www.facebook.com/plugins/like.php?href=http://michaelsync.net/2011/11/04/singapore-silverlight-user-group-june-2011-meetup&#038;layout=standard&#038;show_faces=false&#038;width=450&#038;height=25&#038;action=like&#038;colorscheme=light&#038;" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:25px;"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://michaelsync.net/2011/11/04/singapore-silverlight-user-group-june-2011-meetup/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Singapore Silverlight User Group – Nov 2011 Meetup</title>
		<link>http://michaelsync.net/2011/11/02/singapore-silverlight-user-group-nov-2011-meetup</link>
		<comments>http://michaelsync.net/2011/11/02/singapore-silverlight-user-group-nov-2011-meetup#comments</comments>
		<pubDate>Wed, 02 Nov 2011 14:32:55 +0000</pubDate>
		<dc:creator>Michael Sync</dc:creator>
				<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://michaelsync.net/?p=2121</guid>
		<description><![CDATA[Uditha Sampath Bandara, the first XNA MVP in South East Asia, will be visiting to Singapore this month. We invited him to share his experience in XNA with our group members on 21st of this month. Here is the detailed...]]></description>
			<content:encoded><![CDATA[<p>Uditha Sampath Bandara, the first XNA MVP in South East Asia, will be visiting to Singapore this month. We invited him to share his experience in XNA with our group members on 21st of this month.</p>
<p>Here is the detailed agenda.</p>
<p>Title: Windows Phone 7 Game Development.</p>
<p>Date and Time: 21st November, 2011 ( 7 PM to 9 PM )</p>
<p>Speaker: Uditha Bandara. XNA/DirectX MVP.</p>
<p>Profile: Uditha Bandara is specializes in Microsoft XNA Game development for Windows Phone, Xbox 360, PC, and Zune. He is the South East Asia`s First XNA/DirectX MVP (Most Valuable Professional). He had delivered sessions at various events and conferences in Singapore, Hong Kong, Sri Lanka and India. He has published several articles, tutorials, and game demos on his XNA Game Development Blog – http://uditha.wordpress.com/</p>
<p>Location : Microsoft Singapore &#8211; 22CF-15</p>
<p>Admission : Free</p>
<p><img class="alignnone size-full wp-image-2122" title="xna" src="http://michaelsync.net/wp-content/uploads/2012/01/xna.jpg" alt="" width="300" height="255" />
<div class='kouguu_fb_like_button'><iframe src="http://www.facebook.com/plugins/like.php?href=http://michaelsync.net/2011/11/02/singapore-silverlight-user-group-nov-2011-meetup&#038;layout=standard&#038;show_faces=false&#038;width=450&#038;height=25&#038;action=like&#038;colorscheme=light&#038;" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:25px;"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://michaelsync.net/2011/11/02/singapore-silverlight-user-group-nov-2011-meetup/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Silverlight Diagram Editor</title>
		<link>http://michaelsync.net/2011/09/22/silverlight-diagram-editor</link>
		<comments>http://michaelsync.net/2011/09/22/silverlight-diagram-editor#comments</comments>
		<pubDate>Fri, 23 Sep 2011 02:14:49 +0000</pubDate>
		<dc:creator>Michael Sync</dc:creator>
				<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://michaelsync.net/?p=1882</guid>
		<description><![CDATA[One of my MVP friends shared us a pretty awesome demo that his team created as a part of their Silverlight Diagramming Engine SDK new release. That demo application is called &#8220;Silverlight Diagram Editor&#8221; and you can see it in action...]]></description>
			<content:encoded><![CDATA[<p>One of my MVP friends shared us a pretty awesome demo that his team created as a part of their <a href="http://www.silverdiagram.net/Projects/Silverdiagram.aspx">Silverlight Diagramming Engine SDK</a> new release. That demo application is called &#8220;Silverlight Diagram Editor&#8221; and you can see it in action from the link below..</p>
<p><strong>Demo Link</strong> : <a href="http://silverdiagram.net/Scripts/SD.Editor.html">http://silverdiagram.net/Scripts/SD.Editor.html</a></p>
<p><a href="http://michaelsync.net/wp-content/uploads/2011/09/Silverlight-Diagram-Editor-big.png"><img class="alignnone size-full wp-image-1883" title="Silverlight Diagram Editor" src="http://michaelsync.net/wp-content/uploads/2011/09/Silverlight-Diagram-Editor.png" alt="" width="510" height="297" /></a></p>
<p>There are some sample apps published in <a href="http://silverdiagram.codeplex.com/">codeplex</a> but the source code of this editor is not included for now. Our Mvp friend &#8220;Braulio&#8221; who is also one of developers of this SDK said that it will be published in codeplex very soon.</p>
<p>Another thing is that you need to download the SDK from <a href="http://www.silverdiagram.net/Projects/Silverdiagram.aspx">this link</a> in order to compile the project because the sample project from codeplex is missing some of assemblies from SDK.</p>
<p>I think it&#8217;s really good to see the product or demo application like that during this time especially when we keep on hearing all those news about the death of Silverlight.. Things are more interesting when Microsoft Former Project Manager &#8220;Scott Barnes&#8221; posted a rant &#8220;<strong>Why Silverlight was destined to fail and my time as one of its custodians</strong>&#8221; about Silverlight in his blog. His post was very long post and full of MS inside information.. Unfortunately, he deleted his post so it&#8217;s not available for you to read it now. Anyways, I don&#8217;t want to give any comment about Silverlight for now.. I just want to share a cool thing that I found with my Silverlight community&#8230;.
<div class='kouguu_fb_like_button'><iframe src="http://www.facebook.com/plugins/like.php?href=http://michaelsync.net/2011/09/22/silverlight-diagram-editor&#038;layout=standard&#038;show_faces=false&#038;width=450&#038;height=25&#038;action=like&#038;colorscheme=light&#038;" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:25px;"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://michaelsync.net/2011/09/22/silverlight-diagram-editor/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Phone 7.1 (Mango) &#8211; Tcp Socket acts differently on emulator and device (HTC Mozard)</title>
		<link>http://michaelsync.net/2011/09/20/windows-phone-7-1-mango-tcp-socket-acts-differently-on-emulator-and-device-htc-mozard</link>
		<comments>http://michaelsync.net/2011/09/20/windows-phone-7-1-mango-tcp-socket-acts-differently-on-emulator-and-device-htc-mozard#comments</comments>
		<pubDate>Wed, 21 Sep 2011 06:46:57 +0000</pubDate>
		<dc:creator>Michael Sync</dc:creator>
				<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Windows Phone]]></category>

		<guid isPermaLink="false">http://michaelsync.net/?p=1875</guid>
		<description><![CDATA[It&#8217;s just a quick post to share one strange behavior that I found when I was using Socket in Windows Phone 7.1. project. The issue is that when I run this piece of code on device, I always get &#8220;SocketError = Success&#8221;...]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s just a quick post to share one strange behavior that I found when I was using <a href="http://msdn.microsoft.com/en-us/library/system.net.sockets(v=VS.95).aspx">Socket </a>in Windows Phone 7.1. project.</p>
<p>The issue is that when I run this piece of code on device, I always get &#8220;SocketError = Success&#8221; all the time. I reported about it to Silverlight team but didn&#8217;t hear anything yet. Does anyone have experience this issue with socket? </p>
<pre class="brush: csharp; title: ; notranslate">
private void Button_Click(object sender, RoutedEventArgs e)
{
            var socket = new Socket(AddressFamily.InterNetwork,
                SocketType.Stream,
                ProtocolType.Tcp);

            var ipAddress = IPAddress.Parse(&quot;192.168.10.37&quot;); //This sample is for showing error.. this ip address doesn't count much.
            var args = new SocketAsyncEventArgs();
            args.RemoteEndPoint = new IPEndPoint(ipAddress, 22222);

            args.Completed += (_, evt) =&amp;gt; {
                this.Dispatcher.BeginInvoke(() =&amp;gt;
                {
                    MessageBox.Show(string.Format(&quot;Socket Return Msg : {0}&quot;, evt.SocketError));
                });
            };
            socket.ConnectAsync(args);
}
</pre>
<div class='kouguu_fb_like_button'><iframe src="http://www.facebook.com/plugins/like.php?href=http://michaelsync.net/2011/09/20/windows-phone-7-1-mango-tcp-socket-acts-differently-on-emulator-and-device-htc-mozard&#038;layout=standard&#038;show_faces=false&#038;width=450&#038;height=25&#038;action=like&#038;colorscheme=light&#038;" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:25px;"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://michaelsync.net/2011/09/20/windows-phone-7-1-mango-tcp-socket-acts-differently-on-emulator-and-device-htc-mozard/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Singapore Silverlight User Group – Nov 2010 Meetup</title>
		<link>http://michaelsync.net/2010/11/17/singapore-silverlight-user-group-%e2%80%93-nov-2010-meetup</link>
		<comments>http://michaelsync.net/2010/11/17/singapore-silverlight-user-group-%e2%80%93-nov-2010-meetup#comments</comments>
		<pubDate>Wed, 17 Nov 2010 14:19:07 +0000</pubDate>
		<dc:creator>Michael Sync</dc:creator>
				<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://michaelsync.net/?p=1817</guid>
		<description><![CDATA[Topic : Reactive Framework with Silverlight Speaker : Justin Lee (C# MVP) Date: 24th November, 2010 Time: 7 PM – 10 PM Location: Hackerspace All are welcomed to just show up!! No registrations required!]]></description>
			<content:encoded><![CDATA[<p><strong>Topic : Reactive Framework with Silverlight</strong><br />
<strong>Speaker</strong> : <a href="http://www.justinlee.sg/">Justin Lee</a> (C# MVP)<br />
<strong>Date</strong>: 24th November, 2010<br />
<strong>Time</strong>: 7 PM – 10 PM<br />
<strong>Location</strong>: <a href="http://hackerspace.sg">Hackerspace</a></p>
<p><img class="alignnone size-full wp-image-1818" title="Silverlight and Ractive" src="http://michaelsync.net/wp-content/uploads/2010/11/Silverlight-and-Ractive.png" alt="" width="425" height="196" /></p>
<p>All are welcomed to just show up!! No registrations required!
<div class='kouguu_fb_like_button'><iframe src="http://www.facebook.com/plugins/like.php?href=http://michaelsync.net/2010/11/17/singapore-silverlight-user-group-%e2%80%93-nov-2010-meetup&#038;layout=standard&#038;show_faces=false&#038;width=450&#038;height=25&#038;action=like&#038;colorscheme=light&#038;" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:25px;"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://michaelsync.net/2010/11/17/singapore-silverlight-user-group-%e2%80%93-nov-2010-meetup/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

