Click here to Skip to main content
15,891,951 members
Articles / Desktop Programming / WPF

Reusing Control Templates in Resource Dictionaries

Rate me:
Please Sign up or sign in to vote.
4.98/5 (24 votes)
8 Apr 2010CPOL8 min read 86.1K   3K   33  
Defining control templates in a ResourceDictionary for clean and easy reuse
using System.Windows;

namespace FortySixApplesResourceDictionaryDemo
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            // Wire up the Click event handler for the button.
            showWindowButton.Click += showWindowButton_Click;
        }

        private void showWindowButton_Click(object sender, RoutedEventArgs e)
        {
            // Show the second window.
            var anotherWindow = new AnotherWindow();
            anotherWindow.ShowDialog();
        }
    }
}

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
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