private static void SwitchCategoryPropertyChanged(BindableObject bindable, object oldValue, object newValue)
        {
            var thisItem = (CardGraphicsXF)bindable;

            thisItem.MainObject !.SwitchCategory = (EnumSwitchCategory)newValue;
        }
Exemplo n.º 2
0
        private static void SwitchCategoryPropertyChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e)
        {
            var thisItem = (CardGraphicsWPF)sender;

            thisItem.MainObject !.SwitchCategory = (EnumSwitchCategory)e.NewValue;
        }//end