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 System.Data.SqlClient; using ICSSoft.Frame.APP; using System.Configuration; using ICSSoft.Frame.APP.Helper; using ICSSoft.Frame.APP.Model; using DevExpress.XtraGrid.Columns; using System.Linq; namespace ICSSoft.Frame.APP { public partial class FormDesign:Form { public FormDesign() { string chineseSimpleFrl = AppDomain.CurrentDomain.BaseDirectory + @"Chinese (Simplified).frl"; FastReport.Utils.Res.LoadLocale(chineseSimpleFrl); InitializeComponent(); this.MaximumSize = new Size(Screen.PrimaryScreen.WorkingArea.Width, Screen.PrimaryScreen.WorkingArea.Height); this.WindowState = FormWindowState.Maximized; var report= new FastReport.Report(); report.Load(AppDomain.CurrentDomain.BaseDirectory + "FastReport\\barcodeNew.frx"); this.designerControl1.Report = report; report.Prepare(); report.Design(); } private void FormEcAdd_Load(object sender, EventArgs e) { } } }