change the image inside listview DataTemplate In WINRT -


in windows app (winrt)i want change image dynamically inside listview,where listview items bind datatemplate

the image part of listviewitem template? add image source path text property of list items? if you're updating value dynamically list items need implement inotifypropertychanged , raise propertychanged event when value changes.

<datatemplate>     <image source="{binding imagesourcepath}" /> </datatemplate> 

Comments