How to remove DocumentViewer drop-shadow?

1k Views Asked by At

How can I remove the drop-shadow from the DocumentViewer control?
If I use docViewer.ShowPageBorders = false the normal border around the document is gone too. When I set a BorderBrush the border goes around the control and not the document.
Here is a screenshot of what I mean: enter image description here

Any idea how I can do this?

1

There are 1 best solutions below

2
On

I achieved it by creating my own style which overrides the built in style (along with ShowPageBorders="False"):

<Style TargetType="{x:Type DocumentPageView}">
    <Setter Property="OverridesDefaultStyle" Value="True" />
    <!-- custom styles here -->
</Style>

By using a custom Template for your DocumentmentViewer you can change how it all looks even more.