private void BotonFormularioEditar_Click(object sender, RoutedEventArgs e)
        {
            Event    evento = Evento;
            DateTime fecha  = FechaInicioDatePicker.SelectedDate.Value;
            TimeSpan hora   = new TimeSpan(int.Parse(ComboBoxHoras.SelectedItem.ToString()), int.Parse(ComboBoxMinutos.SelectedIndex.ToString()), 00);

            fecha = fecha + hora;

            evento.Start.DateTime = fecha;
            evento.End.DateTime   = FechaFinDatePicker.SelectedDate.Value;

            _calendariogoogle.EditEvent(evento);

            BotonFormularioEditar.IsEnabled = false;
            BotonAgregarEvento.IsEnabled    = true;
            LimpiarCampos();
        }