テストを行ったところ、スクロールバーは完全に機能します。私が使用したコードは次のとおりです。
XAML:
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<DocumentViewer x:Name="documentViewer"/>
</Grid>
コード ビハインド:
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
XpsDocument document = new XpsDocument("Sample.xps", FileAccess.Read);
this.documentViewer.Document = document.GetFixedDocumentSequence();
document.Close();
}
}