WPF: How to swap Listview cell content with a datatrigger (or equivalent) - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T00:32:26Zhttp://stackoverflow.com/feeds/question/395663http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/395663/wpf-how-to-swap-listview-cell-content-with-a-datatrigger-or-equivalent1WPF: How to swap Listview cell content with a datatrigger (or equivalent)John Noonan2008-12-28T01:20:43Z2009-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#3958350Answer by Brad Leach for WPF: How to swap Listview cell content with a datatrigger (or equivalent)Brad Leach2008-12-28T04:39:24Z2008-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#8371191Answer by Josh G for WPF: How to swap Listview cell content with a datatrigger (or equivalent)Josh G2009-05-07T21:25:40Z2009-05-07T21:33:30Z<p>There are three common techniques for this.</p>
<p><b>1) DataTrigger:</b></p>
<pre><code><DataTemplate x:Key="ImageColumn">
<Grid>
<Image x:Name="img" Source="MyImage.png"/>
<Rectangle x:Name="rect" Fill="Red" Visibility="Hidden"/>
</Grid>
<DataTemplate.Triggers>
<DataTrigger Binding="{Binding TriggerProperty}" Value="2">
<Setter TargetName="rect" Property="Visibility" Value="Visible"/>
<Setter TargetName="img" Property="Visibility" Value="Hidden"/>
</DataTrigger>
<!--etc...-->
</DataTemplate.Triggers>
</DataTemplate>
</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><DataTemplate x:Key="ImageColumn">
<ContentControl Content="{Binding Icon}"/>
</DataTemplate>
</code></pre>