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
查看全文
相关阅读:
从头学pytorch(二十一):全连接网络dense net
Linux环境实现python远程可视编程
centos7安装Anaconda3
sql语句中包含引号处理方法
syslog 日志
python 判断是否为中文
numpy简介
django之模板显示静态文件
Linux(Ubuntu)安装libpcap
Bug预防体系
原文地址:https://www.cnblogs.com/szyicol/p/1596426.html
最新文章
Linux基础
提高上百万条的数据库查询速度
6.基本数据结构-双端队列(Deque)
5.队列的应用案例-烫手的山芋
4.基本数据结构-队列
3.基本数据结构-栈
2.python数据结构的性能分析
1.数据结构&算法的引言+时间复杂度
18.增量式爬虫
8.第一个金融策略
热门文章
7.聚宽数据
tflite量化
tensorflow杂记
docker学习笔记
点云3d检测模型pointpillar
车道线检测LaneNet
autoware杂记
数据集
Deeplab
全卷积网络FCN
Copyright © 2011-2022 走看看