Exemple #1
0
 private void SetRampDisplayConfig()
 {
     try
     {
         //string msg = txtRampDisplayMessage.Text;
         //if (msg1Radio.IsChecked == true)
         //    msg = msg1Radio.Content.ToString();
         //else if (msg2Radio.IsChecked == true)
         //    msg = msg2Radio.Content.ToString();
         objGeneralDba.SetRampDisplayMesaage("CUSTOM_MESSAGE", txtRampDisplayCustomMessage.Text);
         objGeneralDba.SetRampDisplayMesaage("MESSAGE", txtRampDisplayMessage.Text);
         objGeneralDba.SetRoboticParkingStatus(parkingStatusCheck.IsChecked == true?1:0);
         MessageBox.Show("Saved");
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }