博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Dxperience.8.*]报表预览控件PrintControl设置
阅读量:5012 次
发布时间:2019-06-12

本文共 1721 字,大约阅读时间需要 5 分钟。

整理的对PrintControl进行设置的代码

using
 System;
using
 System.Collections.Generic;
using
 System.ComponentModel;
using
 System.Data;
using
 System.Drawing;
using
 System.Text;
using
 System.Windows.Forms;
using
 DevExpress.XtraEditors;
using
 DevExpress.XtraReports.UI;
using
 DevExpress.XtraPrinting.Preview;
using
 DevExpress.XtraPrinting;
using
 DevExpress.XtraPrinting.Control;
namespace
 WindowsFormsApplication1
{
    
public
 
partial
 
class
 XtraForm2 : DevExpress.XtraEditors.XtraForm
    {
        
public
 XtraForm2()
        {
            InitializeComponent();
        }
        
private
 
void
 XtraForm2_Load(
object
 sender, EventArgs e)
        {
            
            XtraReport fXtraReport 
=
 
new
 XtraReport();
            
//
fXtraReport.LoadLayout(@"C:\1.repx");
            PrintingSystem printingSystem1 
=
 
new
 PrintingSystem();
            PrintControl printControl1 
=
 
new
 PrintControl();
            printControl1.PrintingSystem 
=
 printingSystem1;
            PrintBarManager printBarManager 
=
 
new
 PrintBarManager();
            printBarManager.Form 
=
 printControl1;
            printBarManager.Initialize(printControl1);
            printBarManager.MainMenu.Visible 
=
 
false
;
            printBarManager.AllowCustomization 
=
 
false
;
            printingSystem1.SetCommandVisibility(
new
 PrintingSystemCommand[]{
                PrintingSystemCommand.Open,
                PrintingSystemCommand.Save,
                PrintingSystemCommand.ClosePreview,
                PrintingSystemCommand.Customize,
                PrintingSystemCommand.SendCsv,
                PrintingSystemCommand.SendFile,
                PrintingSystemCommand.SendGraphic,
                PrintingSystemCommand.SendMht,
                PrintingSystemCommand.SendPdf,
                PrintingSystemCommand.SendRtf,
                PrintingSystemCommand.SendTxt,
                PrintingSystemCommand.SendXls
            }, CommandVisibility.None);
            fXtraReport.PrintingSystem 
=
 printingSystem1;
            fXtraReport.CreateDocument();
            Controls.Add(printControl1);
            printControl1.Dock 
=
 DockStyle.Fill;
        }
    }
}

转载于:https://www.cnblogs.com/rock_chen/archive/2008/07/02/1233994.html

你可能感兴趣的文章
开发网站遇到的bug
查看>>
实现简单的接口自动化测试平台
查看>>
EXCEL工作表合并
查看>>
Prime Path
查看>>
ODAC(V9.5.15) 学习笔记(三)TOraSession(2)
查看>>
单纯形法
查看>>
SQL中的replace函数
查看>>
java中的类型安全问题-Type safety: Unchecked cast from Object to ...
查看>>
如何解决最后一个尾注引用显示与致谢混为一谈的问题-下
查看>>
Java Socket编程 - 基于TCP方式的二进制文件传输【转】http://blog.csdn.net/jia20003/article/details/8248221...
查看>>
阅读之https及加密原理
查看>>
HDOJ4550 卡片游戏 随便销毁内存的代价就是wa//string类的一些用法
查看>>
css文本样式text、字体样式font
查看>>
python判断图片是否损坏
查看>>
MySQL服务启动:某些服务在未由其他服务或程序使用时将自动停止
查看>>
软件工程第四周作业 - 单元测试
查看>>
KNN与SVM对比&SVM与逻辑回归的对比
查看>>
php 现在拓展地址
查看>>
【Java并发编程】之十六:深入Java内存模型——happen-before规则及其对DCL的分析(含代码)...
查看>>
团队个人冲刺第三天
查看>>