public static TBindable WithDatePickerPropertyChangingEvent <TBindable>(this TBindable self,
                                                                                Xamarin.Forms.PropertyChangingEventHandler handlerAction) where TBindable : DatePicker
        {
            self.PropertyChanging += handlerAction;

            return(self);
        }
        public static TBindable WithRelativeLayoutPropertyChangingEvent <TBindable>(this TBindable self,
                                                                                    Xamarin.Forms.PropertyChangingEventHandler handlerAction) where TBindable : RelativeLayout
        {
            self.PropertyChanging += handlerAction;

            return(self);
        }
예제 #3
0
        public static TBindable WithContentPagePropertyChangingEvent <TBindable>(this TBindable self,
                                                                                 Xamarin.Forms.PropertyChangingEventHandler handlerAction) where TBindable : ContentPage
        {
            self.PropertyChanging += handlerAction;

            return(self);
        }
예제 #4
0
        public static TBindable WithScrollViewPropertyChangingEvent <TBindable>(this TBindable self,
                                                                                Xamarin.Forms.PropertyChangingEventHandler handlerAction) where TBindable : ScrollView
        {
            self.PropertyChanging += handlerAction;

            return(self);
        }
예제 #5
0
        public static TBindable WithActivityIndicatorPropertyChangingEvent <TBindable>(this TBindable self,
                                                                                       Xamarin.Forms.PropertyChangingEventHandler handlerAction) where TBindable : ActivityIndicator
        {
            self.PropertyChanging += handlerAction;

            return(self);
        }