清风徐来
知是行之始,行是知之成

Enabling Scrollbar in WPF

Other CSharpWPFScrollbar滚动条 约 1 分钟
与“Enabling Scrollbar in WPF”相关的原创示意图
与“Enabling Scrollbar in WPF”相关的原创示意图

Put a ScrollViewer inside your Window:

<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>