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
查看全文
相关阅读:
mysql 数据库字符集问题
适配器模式
thinkphp学习笔记
StarDict
dereferencing pointer to incomplete type
转载的一篇 关于git的
策略模式
让你的Ubuntu看的更顺眼些
vim 配置
.NET WEB SERVICE 学习记录
原文地址:https://www.cnblogs.com/szyicol/p/1596426.html
最新文章
好习惯将会改变你的一生
领导要做的是什么?
尝试sql2005的新特性,递归查询
sql2005分页查询(一)
【转贴】项目管理、团队建设问题?
制作批处理文件,执行补丁升级
下一步要解决的技术问题
SELECT 语句中“加锁选项”的功能说明(转贴)
where 子句还可以包括构造函数约束
转贴:简单的3个SQL视图搞定所有SqlServer数据库字典
热门文章
如何提升团队整体水平,规范团队工作流程?
自己的一个总结
Unable to load DLL '*.dll': 内存位置访问无效。
关于DataSet和IList<>泛型集合
使用WITH 定义的“临时表(视图)”,出现问题!
又发现 yield 关键字
如何以二进制的形式上传文件
具体的项目负责人的职责
Decimal 与 Double
ubuntu apache2 rewrite
Copyright © 2011-2022 走看看