In my Silverlight5 application that using mvvm, need to acheive the below one. I have the image folder that contains images. How to get the whole image path and assign it to the hyperlinkbutton.
<HyperlinkButton Content="Preview" NavigateUri="{Binding image_value}"
TargetName="_blank" />
but i need to give the path like the following one ,
("./Images/{0}", String_Value)
Help me to achieve this..