用DocumentViewer控件显示XPS文件 能不能去掉那些多功能按钮 50

或者有什么其他控件显示XPS文件的弄两天了请教各位... 或者有什么其他控件显示XPS文件的 弄两天了 请教各位 展开
 我来答
lupming
2013-12-19
知道答主
回答量:7
采纳率:0%
帮助的人:2.5万
展开全部
真败了,什么时候提的问题了,现在还没有答的..我来结贴吧,资源文件中添加下面这段代码

<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="BorderThickness" Value="0"/> <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="Disabled" VerticalScrollBarVisibility="Disabled" x:Name="PART_ContentHost" IsTabStop="true" Padding="0" BorderThickness="0"> <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>
假小语0K
2018-05-24
知道答主
回答量:11
采纳率:100%
帮助的人:4.8万
展开全部
public class DefaultDocumentViewer : DocumentViewer
    {
        public override void OnApplyTemplate()
        {
            base.OnApplyTemplate();
            var content = ((VisualTreeHelper.GetChild(this, 0) as Border).Child as Grid);
            var cc = (content.Children[0] as ContentControl);
            if (cc != null)//工具栏
                cc.Visibility = System.Windows.Visibility.Collapsed;
            
            var searchBar = content.FindName("PART_FindToolBarHost") as ContentControl;
            if (searchBar != null)//搜索栏
                searchBar.Visibility = System.Windows.Visibility.Collapsed;

        }
    }

继承documentViewer,通过视觉树来获取和操作相关控件,代码简单易懂。

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式