10 things Beginning Silverlight and WPF Developers Need to Know

27. August 2010 4:17 PM
Today come across 10 must know knowledge for WPF and Silverlight programmer, and they are [More]

Quick Tips ,

Launch a browser from Silverlight application

2. June 2010 12:43 PM
It is a question in my mind about how to make my Silverlight application to launch a new instance of browser just like the some hyperlink in normal html/aspx page. After a quick search from the MSDN library and found the answer. Infact, it is very simple, as simple as 1 line of code :) [More]

Quick Tips

Load image from resources dll in WPF/Silverlight

26. May 2010 11:34 AM

As you migrate your business solution application from previous .NET Winform/ASP.NET to microsoft WPF/Silverlight and you wish to reused the existing satellite resource dll which you have created in the pass.


Due to the image object is different between the .NET WinForm/ASP.NET (Bitmap) and WPF/Silverlight (BitmapImage). Which mean, we are not able to call GetObject() in ResourceManager and assign the image into the [More]

Quick Tips ,

Reading LINQ return collection with specific array index

18. May 2010 12:28 PM
A friend just asking me about how to access the LINQ return result collection with a specific array index. Most likely first thought is walk through the collection by foreach. But this might be resource hungry, especially the return collection is huge. So, there is a quick function in the [More]

Quick Tips