zoukankan      html  css  js  c++  java
  • WPF Devexpress PdfViewerControl去掉上面的toolBar,去掉左侧的导航的代码

    引用如下:

    代码如下:

    <Window x:Class="TestGeneratePdf.MainWindow"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
            xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
            xmlns:local="clr-namespace:TestGeneratePdf"
            xmlns:dxpdf="http://schemas.devexpress.com/winfx/2008/xaml/pdf"
            xmlns:dxb="http://schemas.devexpress.com/winfx/2008/xaml/bars" 
            mc:Ignorable="d"
            Title="MainWindow" Height="450" Width="800" Loaded="Window_Loaded" MouseDoubleClick="Window_MouseDoubleClick">
        <Grid x:Name="main">
            <dxpdf:PdfViewerControl Name="viewer" CommandBarStyle="Ribbon" Visibility="Hidden">
                <dxpdf:PdfViewerControl.CommandProvider>
                    <dxpdf:PdfCommandProvider>
                        <dxpdf:PdfCommandProvider.RibbonActions>
                            <dxb:UpdateAction ElementName="{x:Static dxpdf:DefaultPdfBarManagerItemNames.Ribbon}" PropertyName="Visibility" Value="Collapsed"/>
                        </dxpdf:PdfCommandProvider.RibbonActions>
                    </dxpdf:PdfCommandProvider>
                </dxpdf:PdfViewerControl.CommandProvider>
                <dxpdf:PdfViewerControl.AttachmentsViewerSettings>
                    <dxpdf:PdfAttachmentsViewerSettings HideAttachmentsViewer="True"  />
                </dxpdf:PdfViewerControl.AttachmentsViewerSettings>
                <dxpdf:PdfViewerControl.ThumbnailsViewerSettings>
                    <dxpdf:PdfThumbnailsViewerSettings HideThumbnailsViewer="True" />
                </dxpdf:PdfViewerControl.ThumbnailsViewerSettings>
                <dxpdf:PdfViewerControl.OutlinesViewerSettings>
                    <dxpdf:PdfOutlinesViewerSettings HideOutlinesViewer="True"   />
                </dxpdf:PdfViewerControl.OutlinesViewerSettings>
            </dxpdf:PdfViewerControl>
        </Grid>
    </Window>
  • 相关阅读:
    TransactionScop事务机制的使用
    MVC无刷新上传图片并显示
    WebClient和WebRequest获取html代码
    Web.config配置详解
    分类和扩展有什么区别?可以分别用来做什么?分类有哪些局限性?分类的结构体里面有哪些成员?
    有序二维数组的查找
    生成Excel.xlsx文件 iOS
    charles Https抓包
    https 通信流程和Charles 抓包原理
    fastlane自动化打包ipa并发布到firim或者蒲公英
  • 原文地址:https://www.cnblogs.com/wjx-blog/p/13386084.html
Copyright © 2011-2022 走看看