BasicData.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using GuiYangBaseMI.Forms.BasicDatas;
  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.Threading.Tasks;
  10. using System.Windows.Forms;
  11. namespace PTMedicalInsurance.Forms.BasicDatas
  12. {
  13. public partial class BasicData : Form
  14. {
  15. public BasicData()
  16. {
  17. InitializeComponent();
  18. //接口维护
  19. AddForm(this.tpMaintainInterface, new MaintainInterface(this));
  20. //数据下载
  21. AddForm(this.tpDirectoryDownload, new DataDownload(this));
  22. //数据对照
  23. AddForm(this.tpDirectoryMap, new DirectoryMap(this));
  24. //数据下载本地扩展
  25. AddForm(this.tpExp, new DataDownloadLocalExtension(this));
  26. //默认对照页面
  27. tcBasicData.SelectedIndex = 1;
  28. }
  29. private void AddForm(TabPage tabpage, Form frm)
  30. {
  31. tabpage.Controls.Add(frm);
  32. frm.Show();
  33. }
  34. }
  35. public class OutParamWrapper
  36. {
  37. public string Value { get; set; }
  38. }
  39. }