锐腾搅拌上料功能
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.

50 lines
1.3 KiB

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. using DevExpress.XtraEditors;
  9. using System.Data.SqlClient;
  10. using ICSSoft.Frame.APP;
  11. using System.Configuration;
  12. using ICSSoft.Frame.APP.Helper;
  13. using ICSSoft.Frame.APP.Model;
  14. using DevExpress.XtraGrid.Columns;
  15. using System.Linq;
  16. namespace ICSSoft.Frame.APP
  17. {
  18. public partial class FormDesign:Form
  19. {
  20. public FormDesign()
  21. {
  22. string chineseSimpleFrl = AppDomain.CurrentDomain.BaseDirectory + @"Chinese (Simplified).frl";
  23. FastReport.Utils.Res.LoadLocale(chineseSimpleFrl);
  24. InitializeComponent();
  25. this.MaximumSize = new Size(Screen.PrimaryScreen.WorkingArea.Width, Screen.PrimaryScreen.WorkingArea.Height);
  26. this.WindowState = FormWindowState.Maximized;
  27. var report= new FastReport.Report();
  28. report.Load(AppDomain.CurrentDomain.BaseDirectory + "FastReport\\barcodeNew.frx");
  29. this.designerControl1.Report = report;
  30. report.Prepare();
  31. report.Design();
  32. }
  33. private void FormEcAdd_Load(object sender, EventArgs e)
  34. {
  35. }
  36. }
  37. }