private void udMu_ValueChanged(object sender, System.EventArgs e)
 {
     if (chkMu.Checked)
     {
         DttSP.SetCorrectIQMu(0, 0, (double)udMu.Value);
     }
 }
 private void chkMu_CheckedChanged(object sender, System.EventArgs e)
 {
     if (chkMu.Checked)
     {
         chkMu.BackColor = console.ButtonSelectedColor;
         DttSP.SetCorrectIQMu(0, 0, (double)udMu.Value);
     }
     else
     {
         chkMu.BackColor = SystemColors.Control;
         DttSP.SetCorrectIQMu(0, 0, 0.000);
     }
 }