///<summary>改变水平缩放极限值</summary>
 ///<param name="value">值(>=1)</param>
 public void ChangeScaleLimitX(uint value)
 {
     if (m_Oscilloscope != IntPtr.Zero && Dll.ChangeScaleLimitX(m_Oscilloscope, value) && PropertyChanged != null)
     {
         PropertyChanged(Property.TranslateX_Limit, Dll.TranslateX_Limit(m_Oscilloscope));
         PropertyChanged(Property.TranslateX, Dll.TranslateX(m_Oscilloscope));
         PropertyChanged(Property.ScaleX, Dll.ScaleX(m_Oscilloscope));
         PropertyChanged(Property.ScaleX_Limit, Dll.ScaleX_Limit(m_Oscilloscope));
     }
 }