17 lines
333 B
C#
17 lines
333 B
C#
using DevExpress.XtraReports.UI;
|
|
using System;
|
|
using System.Collections;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
|
|
namespace ReportViewer
|
|
{
|
|
public partial class ReportTemplate : DevExpress.XtraReports.UI.XtraReport
|
|
{
|
|
public ReportTemplate()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|