ScrollViewer中的Visual Studio WP设计

时间:2013-06-17 05:19:41

标签: visual-studio xaml visual-studio-2012 windows-phone-8 windows-phone

我正在使用Viual Studio XAML设计器为Windows Phone设计应用程序。我的页面很长,以适应页面,所以我不得不把它放在ScrollViewer和Grid中。这有效但我的问题是设计师不允许我在页面外看到(因此在某种程度上与这些元素相互作用)。我可以使用任何设置或某些东西来与这些元素进行交互吗?

1 个答案:

答案 0 :(得分:2)

将以下内容添加到页面的XAML元素中:

xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
d:DesignHeight="<desired height>"

即:

<phone:PhoneApplicationPage
    x:Class="PhoneApp1.MainPage"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    d:DesignHeight="1600"
    ....more attributes...
    >

    <!-- other stuff -->

</phone:PhoneApplicationPage>

“d”的xml命名空间定义可能已经存在,当然也可以对设计时间宽度进行相同的操作。