zoukankan
html css js c++ java
定制XtraReport 的预览窗口的按钮
private
void
button1_Click(
object
sender, EventArgs e)
{
XtraReport1 xr
=
new
XtraReport1();
xr.PrintingSystem.SetCommandVisibility(PrintingSystemCommand.Print, CommandVisibility.None);
xr.PrintingSystem.SetCommandVisibility(PrintingSystemCommand.PrintDirect , CommandVisibility.None);
xr.PrintingSystem.SetCommandVisibility(PrintingSystemCommand.ExportFile , CommandVisibility.None);
xr.PrintingSystem.SetCommandVisibility(PrintingSystemCommand.SendFile , CommandVisibility.None);
xr.ShowPreviewDialog();
}
详见官方网站的资料
http://www.devexpress.com/Support/Center/KB/p/A2625.aspx
查看全文
相关阅读:
ultraedit 窗口布局
Oracle之Char VarChar VarChar2
Python之pickle
Python之xpath
Python常用数据结构之heapq模块
Python实现排序算法之快速排序
Python常用数据结构之collections模块
New York is 3 hours ahead of California
leetcode978
leetcode979
原文地址:https://www.cnblogs.com/szyicol/p/1596426.html
最新文章
maven学习6 Eclipse下Tomcat常用设置
c#6.0特性
谜题73 : 你的隐私正在公开
谜题72 :终极危
谜题71 :进口税
谜题70 : 一揽子
谜题69 : 黑色的渐隐
谜题68 : 灰色的阴影
谜题67: 对字符串上瘾
谜题66 : 一件私事
热门文章
谜题65:一种疑似排序的惊人传奇
谜题64:按余数编组
css 基础知识
js 语法
java webRoot 路径问题
java sevlet Session
sql 内连接与外连接(转)
CentOS下安装JDK7
kettle 导入xml 资源文件
sybase修改默认字符集为cp936
Copyright © 2011-2022 走看看