System.Windows.Controlsの紹介 - ScrollViewer

XAML

<Window x:Class="Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="ScrollViewer" Height="120" Width="210"
    >
    <ScrollViewer HorizontalScrollBarVisibility="Visible">
        <TextBlock FontFamily="Segoe Script Bold" FontSize="48">GrapeCity inc.</TextBlock>
    </ScrollViewer>
</Window>