FrmInventoryReport.cs 610 B

12345678910111213141516171819202122
  1. using LYFZ.ComponentLibrary;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.UI.StatisticalInquiry
  11. {
  12. public partial class FrmInventoryReport : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmInventoryReport()
  15. {
  16. InitializeComponent();
  17. this.flowLayoutPanel1.BackColor = UIBlueThemeResources.UCNavigationToolColor;
  18. this.UcNavigationTool.LabTitle = "库存报表";
  19. }
  20. }
  21. }