Click here to Skip to main content
15,889,413 members
Articles / Web Development / ASP.NET

Silverlight Active Dynamic Backgrounds

Rate me:
Please Sign up or sign in to vote.
4.89/5 (15 votes)
12 Jun 2010Ms-PL3 min read 42.2K   439   23  
Create a rich and dynamic background that reacts to users when they use your application.
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;

namespace SilverlightApplication1
{
    public partial class Hexagon : ShapeBase
    {
        public Hexagon()
        {
            // Required to initialize variables
            InitializeComponent();
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
We Fix Code
South Africa South Africa
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions