40

我现在遇到一个问题,当窗口垂直太小时,我的 WPF 应用程序会隐藏折叠下方的任何内容。如何使用 XAML 为整个应用程序显示垂直滚动条,以便用户可以滚动查看其余内容?

4

1 回答 1

86

在 Window 中放置一个 ScrollViewer:

<Window x:Class="WpfApplication2.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="300" Width="300">

    <ScrollViewer >
        <!-- Window content here -->
    </ScrollViewer>
</Window>
于 2009-04-09T22:55:19.397 回答