Exemple #1
0
        public void OnStartClose(int position, bool right)
        {
            var h    = ItemCloseStarted;
            var args = new SwipeListViewCloseStartedEventArgs()
            {
                Position = position, Right = right
            };

            if (h != null)
            {
                h(sender, args);
            }
        }
		public void OnStartClose(int position, bool right)
		{
			var h = ItemCloseStarted;
			var args = new SwipeListViewCloseStartedEventArgs() { Position = position, Right = right };
			if(h != null)
				h(sender, args);
		}