예제 #1
0
 private void LayerRadio_CheckedChanged(object sender, EventArgs e)
 {
     if (LayerRadio.Checked)
     {
         ChosenRadioButton = RadioButtonsValues.Layer;
     }
 }
예제 #2
0
 private void CsvFileRadio_CheckedChanged(object sender, EventArgs e)
 {
     if (CsvFileRadio.Checked)
     {
         ChosenRadioButton = RadioButtonsValues.CSV;
     }
 }
예제 #3
0
 private void XmlFileRadion_CheckedChanged(object sender, EventArgs e)
 {
     if (XmlFileRadio.Checked)
     {
         ChosenRadioButton = RadioButtonsValues.XML;
     }
 }
예제 #4
0
 private void SetField()
 {
     XmlFileRadio.Checked = true;
     ChosenRadioButton    = RadioButtonsValues.XML;
 }
예제 #5
0
 private void SetField()
 {
     ChosenRadioButton = XmlFileRadio.Checked ? RadioButtonsValues.XML : RadioButtonsValues.CSV;
 }