public void OnClickFrontView(int position)
		{
			var h = FrontViewClicked;
			var args = new SwipeListViewClickedEventArgs() { Position = position };
			if(h != null)
				h(sender, args);
		}
Пример #2
0
        public void OnClickFrontView(int position)
        {
            var h    = FrontViewClicked;
            var args = new SwipeListViewClickedEventArgs()
            {
                Position = position
            };

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