locked
Image thumbnail at specific location RRS feed

  • Question

  • Hi

    I have to display image thumbnail at speific location say(500,500) pixel from top left window. I don't know how to solve this?

    Please suggest ideas or approach to solve the above.

    Regards
    Raju

     

    Sunday, August 23, 2009 8:19 AM

Answers

  • Hi Raju,

    this can be done with a Canvas.


    <Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
     
    	<Canvas>
    		<Image Canvas.Left="500" Canvas.Top="500"
    		Source="c:\image.jpg" />
    	</Canvas>          
    
    </Page>
    Hope that helps.
    Sunday, August 23, 2009 9:45 AM