Skip to content

Instantly share code, notes, and snippets.

@kevingosse
Created January 13, 2016 19:49
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save kevingosse/e86d8a9443affc68edbc to your computer and use it in GitHub Desktop.
public static readonly DependencyProperty ImageTemplateProperty = DependencyProperty.Register(
"ImageTemplate",
typeof(DataTemplate),
typeof(AdaptiveImage),
null);
public DataTemplate ImageTemplate
{
get { return this.GetValue(ImageTemplateProperty) as DataTemplate; }
set { this.SetValue(ImageTemplateProperty, value); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment