FocusParam.cs 936 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //时间:20200911
  2. //作者:郝爽
  3. //功能:测量参数
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using FileManager;
  10. using System.Xml;
  11. using System.IO;
  12. namespace MeasureData
  13. {
  14. public class FocusParam : ISlo
  15. {
  16. #region 内容
  17. //调节上限
  18. private float m_fUp;
  19. public string UP
  20. {
  21. get { return this.m_fUp; }
  22. set { this.m_fUp = value; }
  23. }
  24. //调节下限
  25. private float m_fDown;
  26. //调节步长
  27. private float m_fStep;
  28. //精调范围
  29. private float m_ffRange;
  30. //精调步长
  31. private float m_ffStep;
  32. #endregion
  33. //XML文件保存测量参数
  34. public override void Serialize(bool isStoring, XmlDocument xml, XmlNode rootNode)
  35. {
  36. Slo slo_msparam = new Slo();
  37. }
  38. }
  39. }