private void Validar()
        {
            ValidacionEmpresa = new ClasesBase.Clases.Empresa(EmpresaAEditar);
            ValidacionEmpresa.PropertyChanged += new PropertyChangedEventHandler(ValidacionEmpresa_PropertyChanged);

            btn_modificar.IsEnabled = ValidacionEmpresa.IsValid();

            DataContext = ValidacionEmpresa;
        }
        public AltaEmpresa()
        {
            InitializeComponent();
            ValidacionEmpresa = new ClasesBase.Clases.Empresa();
            ValidacionEmpresa.PropertyChanged += new PropertyChangedEventHandler(ValidacionEmpresa_PropertyChanged);

            btn_registrar.IsEnabled = ValidacionEmpresa.IsValid();

            DataContext = ValidacionEmpresa;
        }
 private void ValidacionEmpresa_PropertyChanged(object sender, PropertyChangedEventArgs e)
 {
     btn_registrar.IsEnabled = ValidacionEmpresa.IsValid();
 }