You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.3 KiB
51 lines
1.3 KiB
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)
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
}
|