2009-04-09 73 views
30

我現在有一個問題,當我的WPF應用程序在垂直窗口太小時隱藏摺疊下的任何東西。我如何使用XAML爲整個應用程序顯示垂直滾動條,以便用戶可以滾動查看其餘內容?在WPF中啓用滾動條

回答

70

將一個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>