Michael
Michael

Reputation: 22957

Scrolling down in windows phone 7 design pane in visual studio

Silly question, but how do you scroll down in the wp7 design pane for visual studio ?

I have a lot of StackPanel elements in the page and the design pane only shows the first ones who fit the wp screen. i can't find a way to scroll down to the other elemets.

in the capture attached, you can see that after "Units in stock" it doesn't show anything else although i have more elements after.

enter image description here

Upvotes: 5

Views: 1032

Answers (2)

Milan Aggarwal
Milan Aggarwal

Reputation: 5104

Have you tried increasing the design height in the statement which somewhat looks like this? You may find it on the top of your XAML page.

<phone:PhoneApplicationPage mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="1500" />

Upvotes: 3

Rich Hopkins
Rich Hopkins

Reputation: 1891

Unless I'm not understanding the question, just put your StackPanel inside a ScrollViewer. That's what I've done in my apps.

Upvotes: 0

Related Questions