private void Validar() { ValidacionServicio = new ClasesBase.Clases.Servicio(ServicioAEditar); ValidacionServicio.PropertyChanged += new PropertyChangedEventHandler(ValidacionRol_PropertyChanged); btn_modificar.IsEnabled = ValidacionServicio.IsValid(); DataContext = ValidacionServicio; }
public AltaServicio() { InitializeComponent(); ValidacionServicio = new ClasesBase.Clases.Servicio(); ValidacionServicio.PropertyChanged += new PropertyChangedEventHandler(ValidacionServicio_PropertyChanged); btn_registrar.IsEnabled = ValidacionServicio.IsValid(); DataContext = ValidacionServicio; }
private void ValidacionRol_PropertyChanged(object sender, PropertyChangedEventArgs e) { btn_modificar.IsEnabled = ValidacionServicio.IsValid(); }
private void ValidacionServicio_PropertyChanged(object sender, PropertyChangedEventArgs e) { btn_registrar.IsEnabled = ValidacionServicio.IsValid(); }