Click here to Skip to main content
15,885,366 members
Articles / Programming Languages / C#

Silverlight Dynamic Themes

Rate me:
Please Sign up or sign in to vote.
4.92/5 (11 votes)
6 Jan 2012CPOL6 min read 56.5K   5.9K   29  
This article describes how to dynamically apply themes to a Silverlight application.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using System.Windows.Controls.Theming;
using System.Diagnostics;

namespace SLDynamicThemes2
{
    public partial class MainPage : UserControl
    {
        private Uri currentThemeUri = null;

        public MainPage()
        {
            InitializeComponent();
            currentThemeUri = new Uri("/SLDynamicThemes2;component/Assets/Themes/JetPack.xaml", UriKind.Relative);
        }

        public Uri CurrentThemeUri
        {
            get { return currentThemeUri; }
            set { currentThemeUri = value; }
        }

        void ThemeButton_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                Button button = sender as Button;
                if (button.Tag != null)
                {
                    string themeName = button.Tag.ToString();
                    if (!String.IsNullOrEmpty(themeName))
                    {
                        Uri themeUri = new Uri(string.Format(@"/SLDynamicThemes2;component/Assets/Themes/{0}", themeName), UriKind.Relative);
                        ThemeContainer.ThemeUri = currentThemeUri = themeUri;
                    }
                }
            }
            catch (Exception ex)
            {
                Debug.WriteLine(String.Format("An error occurred during changing theme"));
                Debug.WriteLine(ex);
            }
        }
    }
}

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 Code Project Open License (CPOL)


Written By
Software Developer
Romania Romania
I have been a software developer for a while and still find this an interesting job.

Comments and Discussions