如何自定义图表打印对话框的外观 下面是用于显示对话框和快照的代码
我需要控制下面的声音: - 隐藏/显示图标 - 将图标更改为我自己的图标 - 启用/禁用图标
答案 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>