11
Sep
Popularity: 1%
Switch to full screen can be achieved by just one line of coding. However, please note that the method can be called under certain user interaction, such as Mouse Click.

Switch to full screen in C#:
private void FullScreen_Click(object sender, RoutedEventArgs e)
{
// This can be called upon a mouse event
Application.Current.Host.Content.IsFullScreen = !Application.Current.Host.Content.IsFullScreen;
}
11
Sep
Popularity: 1%
This is another 3D text effect without using any 3D library. The texts will orbit around an object in a 3d manner. It works with all kind of transparent object.

11
Sep
Popularity: 1%
Alex Knight has written an tutorial teaching you how to use data binding wisely. You will find that data binding is extremely useful if you really understand how to use it.

11
Sep
Popularity: 1%
An application demonstrating how you can update/set the coordinate of the objects. You are able to bring a specific object to the front. That’s a very good sample for your reference if you want to implement some layout application.

11
Sep
Popularity: 1%
Cynergyblogs shared an very impressive vector fields rendering sample. He also described the mechanism of the programming and all the challenges he encountered during the implementation.
10
Sep
Popularity: 1%
An image rotator created using the clipping feature in Silverlight.

09
Sep
Popularity: 1%
A very nice text switching effect shared by Shine Draw.

09
Sep
Popularity: 1%
This utility helps you to figure out the ASCII code of special characters. Very useful when you want to add some special character in your XAML.
