您的位置:首页 > 其它

WPF DocumentViewer隐藏工具栏和搜索栏

2015-11-12 10:18 225 查看
<Style x:Key="{x:Type DocumentViewer}" TargetType="{x:Type DocumentViewer}">

<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.WindowTextBrushKey}}" />

<Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.ControlBrushKey}}" />

<Setter Property="FocusVisualStyle" Value="{x:Null}" />

<Setter Property="Template">

<Setter.Value>

<ControlTemplate TargetType="{x:Type DocumentViewer}">

<Border BorderThickness="{TemplateBinding BorderThickness}" BorderBrush="{TemplateBinding BorderBrush}" Focusable="False">

<Grid KeyboardNavigation.TabNavigation="Local">

<Grid.Background>

<SolidColorBrush Color="{DynamicResource ControlLightColor}" />

</Grid.Background>

<Grid.RowDefinitions>

<RowDefinition Height="Auto" />

<RowDefinition Height="*" />

<RowDefinition Height="Auto" />

</Grid.RowDefinitions>

<ScrollViewer Grid.Row="1" CanContentScroll="true" HorizontalScrollBarVisibility="Auto" x:Name="PART_ContentHost" IsTabStop="true">

<ScrollViewer.Background>

<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">

<GradientStop Color="{DynamicResource ControlLightColor}" Offset="0" />

<GradientStop Color="{DynamicResource ControlMediumColor}" Offset="1" />

</LinearGradientBrush>

</ScrollViewer.Background>

</ScrollViewer>

</Grid>

</Border>

</ControlTemplate>

</Setter.Value>

</Setter>

</Style>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: