I want to make a user control that shows an image and can invoke a command when clicked. Later I want to bind a list of these controls to a list of products.

link|improve this question

75% accept rate
feedback

3 Answers

There are several ways to do this, but one simple solution would be to use a button (maybe style away the border and background), and use the image as the content of the button.

You can later use a ListBox or similar, and override the DataTemplate to use the button and an image for each product.

link|improve this answer
This is in fact the first route I was taking, but I am wondering if there is a cleaner solution. – mico Apr 27 '10 at 12:51
See my answer below for code – mico Nov 29 '10 at 8:59
feedback
up vote 2 down vote accepted

Well, after a little more fiddling, a simple button does the job. Here it is:

<Button Command="{Binding Path=DisplayProductCommand}" >
   <Image Source="..\Images\my-beautiful-product.jpg"/>
</Button>
link|improve this answer
feedback
   <Image Name="imageFoo" Source="/AppFoo;component/Foo.png" Width="32" Cursor="Hand" MouseUp="imageFoo_MouseUp"/>

    private void imageFoo_MouseUp(object sender, MouseButtonEventArgs e)
    {
        //Do something
    }
link|improve this answer
This does not invoke an ICommand defined in XAML – mico Nov 29 '10 at 8:58
Sorry, mico, for not completely understanding your requirement. Let me leave my answer there just in case anyone needs a quick way to have a clickable image. – Hong Nov 29 '10 at 14:41
feedback

Your Answer

 
or
required, but never shown

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