11
Sep

Switching to Full Screen

Post a comment » 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.

Switching to Full Screen

View Demo: New Window
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

Orbiting Text around an object

Post a comment » 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.

 Orbiting Text around an object

View Demo: New Window
11
Sep

Mac Style Button Tray

Post a comment » Popularity: 1%

Matthias Shapiro Mac Style Button Tray control (or this can be called Fish eye effect). Simple and easy to use!

Mac Style Button Tray (Fish Eye Style)

View Demo: New Window
11
Sep

Simple Data Binding in Blend 3

1 Comment » 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.

Simple Data Binding in Blend 3

11
Sep

Controlling UI Object

Post a comment » 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.

Controlling UI Object

View Demo: New Window
11
Sep

Vector Fields on image

Post a comment » 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.

vector-fields-on-image

View Demo: New Window
10
Sep

Mask Image Rotator

Post a comment » Popularity: 1%

An image rotator created using the clipping feature in Silverlight.

Mask Image Rotator

View Demo: New Window
09
Sep

Simple Text Effect

Post a comment » Popularity: 1%

A very nice text switching effect shared by Shine Draw.

Simple Text Effect

View Demo: New Window
09
Sep

ASCII Table

Post a comment » 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.

ASCII-Table

View Demo: New Window