ResultFile.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. //时间:20200610
  2. //作者:郝爽
  3. //功能:测量结果文件
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace MeasureData
  10. {
  11. class ResultFile
  12. {
  13. #region 内容
  14. //切割点
  15. private CutHole m_cutHole;
  16. public CutHole CutHole
  17. {
  18. get { return this.m_cutHole; }
  19. set { this.m_cutHole = value; }
  20. }
  21. //数据库路径
  22. private string m_DBPath;
  23. public string DBPath
  24. {
  25. get { return this.m_DBPath; }
  26. set { this.m_DBPath = value; }
  27. }
  28. //图1路径
  29. private string m_Image1Path;
  30. public string Image1Path
  31. {
  32. get { return this.m_Image1Path; }
  33. set { this.m_Image1Path = value; }
  34. }
  35. //图2路径
  36. private string m_Image2Path;
  37. public string Image2Path
  38. {
  39. get { return this.m_Image2Path; }
  40. set { this.m_Image2Path = value; }
  41. }
  42. //图3路径
  43. private string m_Image3Path;
  44. public string Image3Path
  45. {
  46. get { return this.m_Image3Path; }
  47. set { this.m_Image3Path = value; }
  48. }
  49. //图4路径
  50. private string m_Image4Path;
  51. public string Image4Path
  52. {
  53. get { return this.m_Image4Path; }
  54. set { this.m_Image4Path = value; }
  55. }
  56. //自动调焦路径
  57. private string m_AutoFocusPath;
  58. public string AutoFocusPath
  59. {
  60. get { return this.m_AutoFocusPath; }
  61. set { this.m_AutoFocusPath = value; }
  62. }
  63. //自动消像散路径
  64. private string m_AutoSitgaPath;
  65. public string AutoSitgaPath
  66. {
  67. get { return this.m_AutoSitgaPath; }
  68. set { this.m_AutoSitgaPath = value; }
  69. }
  70. //自动亮度对比度路径
  71. private string m_AutoBCPath;
  72. public string AutoBCPath
  73. {
  74. get { return this.m_AutoBCPath; }
  75. set { this.m_AutoBCPath = value; }
  76. }
  77. //各个数据以XML形式保存
  78. #endregion
  79. //构造函数
  80. public ResultFile()
  81. {
  82. Init();
  83. }
  84. void Init()
  85. {
  86. }
  87. #region 操作
  88. //保存
  89. #endregion
  90. }
  91. }