Thursday, March 31, 2011

Add Facebook Like to your Silverlight Application

Introduction
In this article you will find out what you need to do if you want to add a Facebook Like button to your Silverlight application.
If you want to see a Live Example see my XAML blog.
Using the code
The strait forward approach is to add a button to your application and make it look the same as the one on Facebook. Then you need to Facebook authenticate the person that clicked the like button and add your Facebook page to list of pages that he likes. This is very difficult to implement and requires knowledge of the Facebook API. You can also try to use the Codeplex Facebook SDK but that requires you to have a Facebook application, if you have a Facebook personal page or a website the SDK will not help.

The simple way to do this is to integrate the HTML Facebook like button into your Silverlight application. In order to do this you need an HtmlHost control that will display the Html like button. Since the standard Microsoft WebBrowser control only works when running in out-of-browser mode I have used the divelements free HtmlHost control. In order to use this control you need to set windowless parameter of your Silverlight plugin to true.

Here is a step by step example:
Create a new project named FacebookLikeApplication in Visual Studio 2010 using the SilverlightApplication template; when creating the project, check the “Host the Silverlight application in a new Web site” option.
Download the divelements Silverlight Tools from here; extract, unblock, and add a reference of Divelements.SilverlightTools.dll to your FacebookLikeApplication project.

Open FacebookLikeApplicationTestPage.aspx and FacebookLikeApplicationTestPage.html, identify the <object .. /> element and add the windowless parameter.
<form id="form1" runat="server" style="height:100%">
    <div id="silverlightControlHost">
        <object data="data:application/x-silverlight-2," 
               type="application/x-silverlight-2" 
               width="100%" height="100%">
          <param name="source" value="ClientBin/FacebookLikeApplication.xap"/>
          <param name="onError" value="onSilverlightError" />
          <param name="background" value="white" />
          <param name="minRuntimeVersion" value="4.0.50826.0" />
          <param name="autoUpgrade" value="true" />
          <param name="windowless" value="true" />
          <a href="<a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=4.0.50826.0" >
                    style="text-decoration:none">
Open the MainPage.xaml and add the HtmlHost control.
<UserControl x:Class="FacebookLikeApplication.MainPage"
    xmlns="<a href="http://schemas.microsoft.com/winfx/2006/xaml/presentation" >
    xmlns:x="<a href="http://schemas.microsoft.com/winfx/2006/xaml" >
    xmlns:d="<a href="http://schemas.microsoft.com/expression/blend/2008" >
    xmlns:mc="<a href="http://schemas.openxmlformats.org/markup-compatibility/2006" >
    xmlns:divtools="clr-namespace:Divelements.SilverlightTools;
                    assembly=Divelements.SilverlightTools"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="400">
Open the Facebook Like button website from here, fill in the fields, and retrieve the Facebook Like iframe.
Open MainPage.xaml.cs and set the Facebook Like iframe to the htmlHost.SourceHtml property; after you set the value, replace the double quotes from the iframe text with a single quote.

Read more: Codeproject