public void OnChoiceChanged(int position, bool selected)
		{
			var h = ChoiceToggled;
			var args = new SwipeListViewChoiceChangedEventArgs() { Position = position, Selected = selected };
			if(h != null)
				h(sender, args);
		}
Esempio n. 2
0
        public void OnChoiceChanged(int position, bool selected)
        {
            var h    = ChoiceToggled;
            var args = new SwipeListViewChoiceChangedEventArgs()
            {
                Position = position, Selected = selected
            };

            if (h != null)
            {
                h(sender, args);
            }
        }