Exemple #1
0
        private static object PinChanged(DependencyObject d, Object baseValue)
        {
            PinUserControl control = (PinUserControl)d;

            if (!control.LocalChange)
            {
                control.SetPinValue((string)baseValue);
            }

            control.LocalChange = false;

            return(baseValue);
        }