12345678910111213141516171819202122232425262728293031 |
- using DevExpress.XtraEditors;
- using DevExpress.XtraPrinting.Native;
- using DevExpress.XtraReports.UI;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace OTSIncAReportApp._1_UI.OTSReportExport
- {
- public partial class ExportYB6156Preview : Form
- {
- XtraReport _report;
- public ExportYB6156Preview(XtraReport report)
- {
- InitializeComponent();
- _report=report;
- }
- private void ExportYB6156Preview_Load(object sender, EventArgs e)
- {
- documentViewer1.DocumentSource = _report;
- }
- }
- }
|