1

我正在使用 Visual Studio 2012 中的 Metro 风格应用程序 (XAML)。我正在构建一个在用户必须滚动的屏幕上垂直流动的表单。我希望能够在设计视图中看到表单,但是在它超过屏幕高度后,我看不到我正在添加的更改,我必须运行应用程序才能看到布局。有没有办法在你工作时在设计视图中滚动?谢谢。

4

1 回答 1

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>
于 2013-06-17T16:18:12.683 回答