예제 #1
0
        public void OnStartOpen(int position, int action, bool right)
        {
            var h    = ItemOpenStarted;
            var args = new SwipeListViewOpenStartedEventArgs()
            {
                Position = position, Right = right
            };

            if (h != null)
            {
                h(sender, args);
            }
        }
		public void OnStartOpen(int position, int action, bool right)
		{
			var h = ItemOpenStarted;
			var args = new SwipeListViewOpenStartedEventArgs() { Position = position, Right = right };
			if(h != null)
				h(sender, args);
		}