vote up 0 vote down star

I am trying to bind the Text of a TextBox named 'txtImage' to an image using the following code with no results:

<Image Source="{Binding ElementName=txtImage, Path=Text}" />

What would the right approach be?

flag

67% accept rate
Are you getting binding errors in the output when running from Visual Studio? I'd doubt that you can use a String as an ImageSource. – Johannes Rössel Jul 16 at 15:11

1 Answer

vote up 0 vote down check

Source of Image requires a BitmapImage, thus try using a Value Converter to convert the string to an Image:

public sealed class ImageConverter : IValueConverter
{
    public object Convert(object value, Type targetType,
                          object parameter, CultureInfo culture)
    {
        try
        {
            return new BitmapImage(new Uri((string)value));
        }
        catch 
        {
            return new BitmapImage();
        }
    }

    public object ConvertBack(object value, Type targetType,
                              object parameter, CultureInfo culture)
    {
        throw new NotImplementedException();
    }

}  

<Image>
    <Image.Source>
        <BitmapImage UriSource="{Binding ElementName=txtImage, Path=Text, Converter=...}" />
    </Image.Source>
</Image>

Reference: http://stackoverflow.com/questions/20586/wpf-image-urisource-and-data-binding

link|flag
In order for this to work, would the converter have to be decared in procedural code? – JP Jul 21 at 0:57
The converter should be declared in the Resources section (in xaml). For example, in Window.Resources – Andreas Grech Jul 21 at 5:56
Thank you very much. – JP Jul 22 at 17:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.