﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - Crosslight - How to Update Bound Item Text in a ListViewModel</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Update-Bound-Item-Text-in-a-ListViewModel/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>How to Update Bound Item Text in a ListViewModel</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Update-Bound-Item-Text-in-a-ListViewModel/</link><pubDate>Wed, 27 Apr 2016 16:46:53 GMT</pubDate><dc:creator>calebpourchot</dc:creator><category>listviewmodel</category><description>&lt;p&gt;If I have a ListViewModel and the items are bound to a simple model like:&lt;/p&gt;&lt;pre&gt;public class TestViewModel : ViewModelBase
{
public string Description
{
   get { return _description; }
   set
   {
      if (_description != value)
      {
         _description = value;
        OnPropertyChanged("Description");
      }
   }
}
}&lt;span style="font-family: 'Lucida Sans Unicode'; font-size: 10pt;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;font face="Lucida Sans Unicode"&gt;&lt;span style="font-size: 13.3333px;"&gt;The list's item binding DisplayMemberPath is bound to Description.&lt;/span&gt;&lt;/font&gt;&lt;/pre&gt;&lt;pre&gt;&lt;font face="Lucida Sans Unicode"&gt;&lt;span style="font-size: 13.3333px;"&gt;The first time the list is loaded, everything is bound and displayed correctly. However, if I programatically change Description in the model, the text in the list does not update.&lt;/span&gt;&lt;/font&gt;&lt;/pre&gt;&lt;pre&gt;&lt;font face="Lucida Sans Unicode"&gt;&lt;span style="font-size: 13.3333px;"&gt;How do I get that to work?&lt;/span&gt;&lt;/font&gt;&lt;/pre&gt;</description></item></channel></rss>