Click here to Skip to main content
15,884,237 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 SLDynamicThemes2.Controls;
using System.IO;

namespace SLDynamicThemes2
{
    public partial class TestChildWindow : CustomChildWindow
    {
        public TestChildWindow()
        {
            InitializeComponent();
        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            this.Close();
        }

        private void ThemeNameTextBlock_Loaded(object sender, RoutedEventArgs e)
        {
            App app = (App)App.Current;
            MainPage mainPage = app.RootVisual as MainPage;
            TextBlock textBlock = sender as TextBlock;
            textBlock.Text = System.IO.Path.GetFileName(mainPage.CurrentThemeUri.ToString());
        }
    }
}

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