123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Runtime.InteropServices;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- using DevExpress.XtraEditors;
- using DevExpress.XtraReports.UserDesigner;
- namespace GetEasy.Node.Printer.Test
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- NodeReportDesigner.DesignerReport(null, null);
- }
- }
- }
|