WPF: How to swap Listview cell content with a datatrigger (or equivalent) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T00:32:26Z http://stackoverflow.com/feeds/question/395663 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/395663/wpf-how-to-swap-listview-cell-content-with-a-datatrigger-or-equivalent 1 WPF: How to swap Listview cell content with a datatrigger (or equivalent) John Noonan 2008-12-28T01:20:43Z 2009-05-07T21:33:30Z <p>I have a WPF App that implements a ListView. I would like to show an image (a small icon) in one of the columns depending on the type of the data that row represents. Sort of like the display you see in Windows Explorer. </p> <p>I am using DataTriggers elsewhere in my XAML, it seems like a similar method could be used to swap out entire cell contents, but I can't find an example of anyone doing that.</p> <p>Any thoughts?</p> http://stackoverflow.com/questions/395663/wpf-how-to-swap-listview-cell-content-with-a-datatrigger-or-equivalent/395835#395835 0 Answer by Brad Leach for WPF: How to swap Listview cell content with a datatrigger (or equivalent) Brad Leach 2008-12-28T04:39:24Z 2008-12-28T04:39:24Z <p>In the past, I've used <strong>ValueConverters</strong> to provide the Image I want to display, however I am intrigued to the possibility of using DataTriggers for this purpose.</p> <p>Beatriz Stollnitz posts a solution to a similar issue <a href="http://www.beacosta.com/blog/?p=29" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/395663/wpf-how-to-swap-listview-cell-content-with-a-datatrigger-or-equivalent/837119#837119 1 Answer by Josh G for WPF: How to swap Listview cell content with a datatrigger (or equivalent) Josh G 2009-05-07T21:25:40Z 2009-05-07T21:33:30Z <p>There are three common techniques for this.</p> <p><b>1) DataTrigger:</b></p> <pre><code>&lt;DataTemplate x:Key="ImageColumn"&gt; &lt;Grid&gt; &lt;Image x:Name="img" Source="MyImage.png"/&gt; &lt;Rectangle x:Name="rect" Fill="Red" Visibility="Hidden"/&gt; &lt;/Grid&gt; &lt;DataTemplate.Triggers&gt; &lt;DataTrigger Binding="{Binding TriggerProperty}" Value="2"&gt; &lt;Setter TargetName="rect" Property="Visibility" Value="Visible"/&gt; &lt;Setter TargetName="img" Property="Visibility" Value="Hidden"/&gt; &lt;/DataTrigger&gt; &lt;!--etc...--&gt; &lt;/DataTemplate.Triggers&gt; &lt;/DataTemplate&gt; </code></pre> <p><b>2) ValueConverters:</b></p> <pre><code>public class MyConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { string strVal = value as string; switch (strVal) { case "2": Rectangle rect = new Rectangle(); rect.Fill = Brushes.Red; return rect; default: Image img = new Image(); ImageSourceConverter s = new ImageSourceConverter(); img.Source = (ImageSource)s.ConvertFromString("MyImage.png"); return img; } } } </code></pre> <p><b>3) MVVM (Model-View-ViewModel):</b></p> <p>Create a ViewModel class that wraps your data model. This ViewModel would evaulate the properties in the data model and combine them with logic into a new property.</p> <pre><code>public UIElement Icon { get { if (TriggerProperty == "2") { Rectange rect = new Rectangle(); rect.Fill = Brushes.Red; return rect; } else { Image img = new Image(); ImageSourceConverter s = new ImageSourceConverter(); img.Source = (ImageSource)s.ConvertFromString("MyImage.png"); return img; } } } </code></pre> <p>And the XAML:</p> <pre><code>&lt;DataTemplate x:Key="ImageColumn"&gt; &lt;ContentControl Content="{Binding Icon}"/&gt; &lt;/DataTemplate&gt; </code></pre>