I don't like using code behind for such a functionality. I would rather recommend implementing a DataTemplateConverter useable in the binding markup to achieve this exact functionality.
for exemple:
<ContentControl ContentTemplate="{Binding Converter={StaticResource templateConverter}, Path=yourbindingpath}"/>
the converter would be instantiated in the resource section of the xaml file.
<myControls:EmptyDataTemplateConverter x:Key="templateConverter">
<myControls:EmptyDataTemplateConverter.NonEmpty>
<DataTemplate>[...]</DataTemplate>
</myControls:EmptyDataTemplateConverter.NonEmpty>
<myControls:EmptyDataTemplateConverter.Empty>
<DataTemplate>[...]</DataTemplate>
</myControls:EmptyDataTemplateConverter.Empty>
</myControls:EmptyDataTemplateConveter>
In this case, the Empty/NonEmpty implementation is up to you.
To understand how you can implement such a ValueConverter, see MSDN (or google)
Sample added. You could use dependency properties for the DataTemplate, but for brievty I ometted this here.
public class EmptyDataTemplateConverter: IValueConverter
{
public DataTemplate Empty{get;set;}
public DataTemplate NonEmpty{get;set;}
// This converts the DateTime object to the DataTemplate to use.
public object Convert(object value, Type targetType, object parameter,
System.Globalization.CultureInfo culture)
{
if(IsEmpty(value))
{
return this.Empty;
}
else
{
return this.NonEmpty;
}
}
//Your "empty/not empty" implementation here. Mine is rather... incomplete.
private bool IsEmpty(object value)
{
return value!=null;
}
// No need to implement converting back on a one-way binding
public object ConvertBack(object value, Type targetType,
object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
}
Edit:
Other way of achieving the same goal, but a little more in the "Silverlight way". Use a GoToStateAction and the adequate trigger. Encapsulate your template graphics in an UserControl, and specify States for this UserControl. This way, the user control will change according to the trigger's behavior (Empty/not empty).
The result will be the same as my former proposition, but with the added benefit of state changes animations, which would be difficult to achieve (modified TransitioningContentControl) with a DataTemplateConverter.