Exemple #1
0
 private void EhMajorSpanValidating(string txt, CancelEventArgs e)
 {
     if (GUIConversion.IsDoubleOrNull(txt, out var val))
     {
         _doc.MajorTickSpan = val;
     }
     else
     {
         e.Cancel = true;
     }
 }