/// <summary>
 /// Zp1 Zc2
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void radioButton5_CheckedChanged(object sender, EventArgs e)
 {
     ModaleNameTextBox("Zп1, Ω", "Zc2, Ω", "Rc", "Rп", "Erc", "Erп");
     ClearTextBoxs();
     _setOfParameters  = SetOfParametersEnum.Zp1_Zc2;
     textBox3.ReadOnly = false;
     textBox4.ReadOnly = false;
     LabelTransport();
 }
 /// <summary>
 /// Погонные
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void radioButton1_CheckedChanged(object sender, EventArgs e)
 {
     ModaleNameTextBox("L11/μ\u2080", "L22/μ\u2080", "L12/μ\u2080", "C11/ε\u2080", "C22/ε\u2080", "-C12/ε\u2080");
     ClearTextBoxs();
     _setOfParameters  = SetOfParametersEnum.Pogonie;
     textBox3.ReadOnly = false;
     textBox4.ReadOnly = false;
     LabelTransport();
 }
 /// <summary>
 /// Модальные симметрич rc=1 rp=-1
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void radioButton7_CheckedChanged(object sender, EventArgs e)
 {
     ModaleNameTextBox("Z0, Ω", "k", "Rc", "Rп", "Erc", "Erп");
     ClearTextBoxs();
     textBox3.Text     = "1";
     textBox4.Text     = "-1";
     textBox3.ReadOnly = true;
     textBox4.ReadOnly = true;
     _setOfParameters  = SetOfParametersEnum.ModalnieSymm;
     LabelTransport();
 }
 /// <summary>
 /// Zp1 Zc2 Rc=1 Rp=0
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void radioButton6_CheckedChanged(object sender, EventArgs e)
 {
     ModaleNameTextBox("Zп1, Ω", "Zc2, Ω", "Rc", "Rп", "Erc", "Erп");
     ClearTextBoxs();
     textBox3.Text     = "1";
     textBox3.ReadOnly = true;
     textBox4.Text     = "-1e-3";
     textBox4.ReadOnly = true;
     _setOfParameters  = SetOfParametersEnum.Zp1_Zc2_RcOne_RpZero;
     LabelTransport();
 }
 /// <summary>
 /// Погонные пФ нГн
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void radioButton2_CheckedChanged(object sender, EventArgs e)
 {
     ModaleNameTextBox("L11, μH/m", "L22, μH/m", "L12, μH/m", "C11, pF/m", "C22, pF/m", "-C12, pF/m");
     ClearTextBoxs();
     _setOfParameters  = SetOfParametersEnum.Pogonie_pF_nGn;
     label1.Location   = new Point(label1.Location.X - 9, label1.Location.Y);
     label2.Location   = new Point(label2.Location.X - 9, label2.Location.Y);
     label3.Location   = new Point(label3.Location.X - 9, label3.Location.Y);
     label4.Location   = new Point(label4.Location.X - 9, label4.Location.Y);
     label5.Location   = new Point(label5.Location.X - 9, label5.Location.Y);
     label6.Location   = new Point(label6.Location.X - 12, label6.Location.Y);
     textBox3.ReadOnly = false;
     textBox4.ReadOnly = false;
 }