I missed the release of the latest version of the Facebook Developer Toolkit from clarity consulting so I decided to play around with it after our Mix It Up event.
There have been much changes to the toolkit since the last time I looked into it. It took me a few minutes to try [...]
I did a session on facebook development using the facebook developer toolkit where I also showed how I integrated my Piss Off Silverlight application into a facebook app, which I now call PissBook. I’ve registered the pissbook url but have yet to point it to my app as it seems that facebook isn’t [...]
If you want to embed a font into your Silverlight applications, add the font into your project:
Set the Build Action file property to embedded resource:
Use the following code snippet to use the font as a font source for your components:
Assembly ass = Assembly.GetExecutingAssembly();
Stream stream =
ass.GetManifestResourceStream("EmbeddedResource.Font.pricedow.ttf");
this.test.FontSource = new FontSource(stream);
this.test.FontFamily = new FontFamily("Pricedown");
XAML [...]