Skip to content

Instantly share code, notes, and snippets.

@fuqunaga
Created December 14, 2018 07:14
Show Gist options
  • Save fuqunaga/06e59f9a160dda671af8d62a179c36f8 to your computer and use it in GitHub Desktop.
Save fuqunaga/06e59f9a160dda671af8d62a179c36f8 to your computer and use it in GitHub Desktop.
public class BoolDataTemplateSelector : DataTemplateSelector
{
public DataTemplate TrueTemplate { get; set; }
public DataTemplate FalseTemplate { get; set; }
public override DataTemplate SelectTemplate(object item, DependencyObject container)
{
// Null value can be passed by IDE designer
if (item == null) return null;
var b = Convert.ToBoolean(item);
return b ? TrueTemplate : FalseTemplate;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment