Exemplo n.º 1
0
        public void OnOpened(int position, bool toRight)
        {
            var h    = ItemOpened;
            var args = new SwipeListViewOpenedEventArgs()
            {
                Position = position, ToRight = toRight
            };

            if (h != null)
            {
                h(sender, args);
            }
        }
		public void OnOpened(int position, bool toRight)
		{
			var h = ItemOpened;
			var args = new SwipeListViewOpenedEventArgs() { Position = position, ToRight = toRight };
			if(h != null)
				h(sender, args);
		}