Click here to Skip to main content
15,880,364 members
Articles / Programming Languages / C#

Applying Data Templates Dynamically by Type in WP7

Rate me:
Please Sign up or sign in to vote.
5.00/5 (9 votes)
19 Oct 2010CPOL9 min read 86.2K   2.1K   25  
This article presents a way to apply data templates dynamically by type in the Windows Phone 7 platform
using System;
using System.Net;
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;
using GalaSoft.MvvmLight;
namespace dynDataTemplateTest.View
{
    public class DynamicContentControl:ContentControl
    {
        protected override void OnContentChanged(object oldContent, object newContent)
        {
            base.OnContentChanged(oldContent, newContent);
            this.ContentTemplate = mSator.Model.DataTemplateSelector.GetTemplate(newContent as ViewModelBase);
        }        
    }
}

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
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions