123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //时间:20200911
- //作者:郝爽
- //功能:测量参数
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using FileManager;
- using System.Xml;
- using System.IO;
- namespace MeasureData
- {
- public class FocusParam : ISlo
- {
- #region 内容
- //调节上限
- private float m_fUp;
- public string UP
- {
- get { return this.m_fUp; }
- set { this.m_fUp = value; }
- }
- //调节下限
- private float m_fDown;
- //调节步长
- private float m_fStep;
- //精调范围
- private float m_ffRange;
- //精调步长
- private float m_ffStep;
- #endregion
- //XML文件保存测量参数
- public override void Serialize(bool isStoring, XmlDocument xml, XmlNode rootNode)
- {
- Slo slo_msparam = new Slo();
- }
- }
- }
|