自定义打印预览对话框[DevExpress]图表控件

时间:2017-07-09 13:03:16

标签: charts printing devexpress

如何自定义图表打印对话框的外观 下面是用于显示对话框和快照的代码

我需要控制下面的声音: - 隐藏/显示图标 - 将图标更改为我自己的图标 - 启用/禁用图标 print preview dialog

1 个答案:

答案 0 :(得分:0)

我已经找到答案了 DocumentPreviewControl

<dxp:DocumentPreviewControl Name="PrintPreview">
            <dxp:DocumentPreviewControl.CommandProvider>
                <dxp:DocumentCommandProvider>
                    <dxp:DocumentCommandProvider.RibbonActions>

                        <!--Customize Action-->
                        <dxb:UpdateAction ElementName="{x:Static dxpbars:DefaultPreviewBarItemNames.Print}" 
                                    Property="{x:Static dxb:BarItem.LargeGlyphProperty}" 
                                   Value="{dx:QualifiedImage Uri=../../../Images/Export.png}" />
                        <!--Remove Action-->
                        <!--<dxb:RemoveAction ElementName="{x:Static dxpbars:DefaultPreviewBarItemNames.FileGroup}"/>-->

                        <!--Add New Action-->
                    </dxp:DocumentCommandProvider.RibbonActions>
                </dxp:DocumentCommandProvider>
            </dxp:DocumentPreviewControl.CommandProvider>
        </dxp:DocumentPreviewControl>