Как убрать кнопки у WPF FlowDocumentPageViewer

Надо прописать ему Template:

<FlowDocumentPageViewer.Template>
    <ControlTemplate TargetType="{x:Type FlowDocumentPageViewer}">
        <AdornerDecorator>
            <DocumentPageView FlowDocumentPageViewer.IsMasterPage="True" />
        </AdornerDecorator>
    </ControlTemplate>
</FlowDocumentPageViewer.Template>

либо, если нужен FlowDocument без кнопок можно использовать FlowDocumentScrollViewer с убранным вертикальным скролбаром:

<FlowDocumentScrollViewer VerticalScrollBarVisibility="Hidden">
    <FlowDocument>
        <Paragraph>
			Some Text
        </Paragraph>
    </FlowDocument>
</FlowDocumentScrollViewer>
Линии 3D/Шарики 3D

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *