Click here to Skip to main content
15,880,651 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am working on a windows phone 8 app. I have a canvas containing images which I can drag to change their position in canvas. My problem is that canvas is not scrollable, I want a vertical scrollbar in page. I tried like this:
HTML
<grid x:name="ContentPanel" grid.row="1" margin="12,0,12,0" xmlns:x="#unknown">
        <scrollviewer x:name="scvImages" horizontalalignment="Stretch">
                      VerticalAlignment="Stretch" Margin="0"
                      HorizontalContentAlignment="Stretch" Height="Auto" Width="Auto"&gt;
            <grid height="Auto" width="Auto">
                &lt;Canvas x:Name="canImages" Height="Auto" Width="Auto"&gt;
                &lt;/Canvas&gt;
            </grid>                      
        </scrollviewer>
        </grid>
Posted
Updated 5-Feb-13 20:20pm
v2
Comments
Jeff Blankenburg 7-Feb-13 9:04am    
There are several things I'm confused about in this code sample.

1) XAML tags are case-sensitive, and yours are not capitalized properly.
2) Where is the drag-drop functionality?
3) Several of your properties are actually outside of the < >. Is this really the code you're trying to use? I don't believe this will work at all as written.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900