Example #1
0
        private static void idPersonaAct(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            ccCliente test = (ccCliente)d;

            test.idPersona = e.NewValue as string;
        }
Example #2
0
        private static void ColorCatClienteAct(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            ccCliente test = (ccCliente)d;

            test.ColorCatCliente = e.NewValue as string;
        }
Example #3
0
        private static void BtnEditarAct(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            ccCliente test = (ccCliente)d;

            test.BtnEditar = e.NewValue as Button;
        }
Example #4
0
        private static void NombreCompletoClienteAct(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            ccCliente test = (ccCliente)d;

            test.NombreCompletoCliente = e.NewValue as string;
        }