我正在使用Visual Studio 2012中的Metro风格应用程序(XAML)。我正在构建一个在屏幕上垂直流动的表单,用户必须滚动它。我希望能够在设计视图中看到该表单,但在超出屏幕高度后,我无法看到我正在添加的更改,我必须运行应用程序才能看到布局。在工作时有没有办法在设计视图中滚动?谢谢。
答案 0 :(得分:2)
您可以使用DesignHeight
& DesignWidth
属性,如果要在设计模式下拉伸当前页面。
<Page
x:Class="App1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App1"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="1768"
d:DesignWidth="2366">
<!-- Other XAML Controls -->
</Page>